> ## Documentation Index
> Fetch the complete documentation index at: https://docs.younegotiate.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Sent Auto Communications

> A creditor asks whether an automated payment reminder was sent to a consumer.

## Real-World Example

A creditor asks whether an automated payment reminder was sent to a consumer. Super Admin opens Sent and checks the automated communication history for the related event.

## Visual Flow

```mermaid placement="top-right" actions={true} theme={"system"}
flowchart TD
    A["Automated event sends message"] --> B["History record is created"]
    B --> C["Super Admin opens Sent"]
    C --> D["Super Admin reviews delivery context"]
    classDef default fill:#F8FAFC,stroke:#64748B,stroke-width:1.5px,color:#0F172A;
    classDef actor fill:#E0F2FE,stroke:#0284C7,stroke-width:2px,color:#0C4A6E;
    classDef system fill:#F8FAFC,stroke:#64748B,stroke-width:1.5px,color:#0F172A;
    classDef decision fill:#FEF3C7,stroke:#D97706,stroke-width:2px,color:#78350F;
    classDef risk fill:#FEE2E2,stroke:#DC2626,stroke-width:2px,color:#7F1D1D;
    classDef outcome fill:#DCFCE7,stroke:#16A34A,stroke-width:2px,color:#14532D;
    class A actor;
    class B outcome;
    class C,D system;
    linkStyle default stroke:#94A3B8,stroke-width:2px;
```

## How It Should Work

* It should show automated communication history.
* It should help Super Admin confirm when and why a message was sent.
* It should preserve delivery and trigger context.

## How It Should Not Work

* It should not hide failed or incomplete automated communication history.
* It should not detach messages from their trigger meaning.
* It should not show misleading sent status when the message did not send.

## Developer Notes

* History is useful for support and diagnosing automated communication behavior.
* Keep status labels clear and tied to actual send results.

## Related App Areas

* `routes/superadmin.php`
* `app/Livewire/Creditor/AutomatedCommunication/AutomatedCommunicationHistory`
