andrewdavey / postal

Email sending for asp.net mvc using the view engine system to render emails.
http://aboutcode.net/postal
MIT License
536 stars 168 forks source link

How to identify if the email is sent or not #163

Open chukkalasandeep opened 8 years ago

chukkalasandeep commented 8 years ago

Hi

How can we track if the email is sent successfully or not. Is there any track back of mail response.

I am using SendAsync method.

andrewdavey commented 8 years ago

This isn't something Postal can really handle itself. I'd recommend sending emails via something like MailGun which has really good logging to check for bounces and other send failures.

franciscohanna92 commented 5 years ago

A little bit late, but just in case.

We're handling it with:

object _lock = new object();
try
{
    lock (_lock)
    {
        _service.Send(notificacion);
    }
}
catch (Exception ex)
{
    throw;
}

Where _service is an instance of IEmailService

johncrista239 commented 10 months ago

To check if an email has been sent, you can follow these steps:

Check your "Sent" folder in your email client to confirm the message was dispatched. Look for a sent confirmation or delivery receipt in your email settings. Reach out to the recipient and ask for confirmation or check if they received the email. Utilize email tracking tools or read receipts if available and check out Igi 1 download.

jackmartin61 commented 2 months ago

Have you checked the sent items folder or used an email tracking tool? Sometimes, these can help confirm Free manga if the email was successfully sent or if there was an issue.