Home > Back-end >  Is it possible to see a history of email addresses to which an email was sent to, by Amazon SES?
Is it possible to see a history of email addresses to which an email was sent to, by Amazon SES?

Time:11-11

I have a subscription form that, when filled, sends an email using Amazon SES & stores user info in my database.

The database has not been working in recent weeks, although mail delivery has worked.

Since my storage mechanism has failed, can SES provide me with a history of email addresses to which an email was sent to?

CodePudding user response:

Since my storage mechanism has failed, can SES provide me with a history of email addresses to which an email was sent to?

No unfortunately, unless you previously configured it to do so.

Checking anything at a granular level within SES - including email sending/delivery - can only be done using event publishing.

Also, event publishing cannot be backdated so if you enable it now, it will also only work for emails sent from this point onwards.

  • Related