I am developing an Asp.Net application, where I am sending a mail to the user\'s email address, if he forgets the password.
I want to check if the mail has been sent
You can use the DeliveryNotificationOptions to receive a receipt.
If you have a MailMessage object named mail, do this:
MailMessage
mail.DeliveryNotificationOptions = DeliveryNotificationOptions.OnSuccess;