var myMailMessage = new System.Net.Mail.MailMessage();
myMailMessage.From = new System.Net.Mail.MailAddress("sender@gmail.com");
myMailMessage.To.Add("to@yahoo.com");// Mail would be sent to this address
myMailMessage.Subject = "Feedback Form";
myMailMessage.Body = "Hello";
MailAddress adminAddress = new MailAddress("report@yahoo.com");
//Add "Disposition-Notification-To" for Read receipt
myMailMessage.DeliveryNotificationOptions = DeliveryNotificationOptions.OnSuccess;
myMailMessage.DeliveryNotificationOptions = DeliveryNotificationOption ...
Go to the complete details ...