My app flow looks like this:
- I created an invoice, invoice status =
created
- I send it to user, I use Queueable so the process of sending email is separated from main app.
- After sending email complete, invoice status should be
sent
The problem is, I could not find any event like AfterEmailSent
for specific Mailable class in app/Mail
.