When sending emails with System.Net.Mail in C#, you can specify you want certain receipts:
Delivery receipts: These are the receipt emails that get sent back to you by *your* email server when it is satisfied that the email was sent to the other's server. This has no bearing on whether the other person actually saw the email, but on the other hand it doesn't require them to allow a receipt. You can get these this way:
msg.DeliveryNotificationOptions = DeliveryNotificationOptions.OnFailure | DeliveryNotificationOptions.OnSuccess | DeliveryNotificationOptions.Delay;
Read receipts: These are the emails that arrive in your inbox, saying something like 'the sender of this email requested a receipt upon reading it. Shall i send it?'. The receipt is optional and it requires their email client to support it, but it's a better way of gauging whether the person at the other end actually got it. Hint - i use this way, not the delivery receipts. And here's some code (change the email address!):
msg.Headers.Add("Disposition-Notification-To", "chris@splinter.com.au");
And here's a complete guide to emails:
using System.Net.Mail;
...
MailMessage msg = new MailMessage();
msg.From = new MailAddress("me@wherever.com","My name");
msg.To.Add("recipient1@abcdef.com"); // Who's it to
msg.To.Add("recipient2@abcdef.com");
msg.CC.Add("recipient3@abcdef.com"); // CC recipient(s)
msg.CC.Add("recipient4@abcdef.com");
msg.Subject = "Subject line";
msg.Body = "<html><h1>Big header</h1><p>And some smaller text</p></html>"
msg.IsBodyHtml = msg.Body.Contains("<html>");
// Delivery notifications
msg.DeliveryNotificationOptions =
DeliveryNotificationOptions.OnFailure |
DeliveryNotificationOptions.OnSuccess |
DeliveryNotificationOptions.Delay;
// Ask for a read receipt
msg.Headers.Add("Disposition-Notification-To", "chris@splinter.com.au");
// Attachment(s)
byte[] data = File.ReadAllBytes("attachment.dat");
msg.Attachments.Add(new Attachment(new MemoryStream(data),"MyAttachment.dat"));
// Send it
new SmtpClient("my-smtp-server").Send(msg);

Hi Chris
I believe this code won't work if the sender's mail is different from that specified in the
Disposition-Notification-To
so is there another way to provide a mail different from that of the sender's
thank
You're probably right mina, it'd likely not work if the addresses were different - i guess this is an anti-spam / phishing feature of most email programs.
Thank you so much !