Open chukkalasandeep opened 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.
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
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.
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.
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.