Email receipt...

Illusion

Centurion
Joined
Aug 7, 2003
Messages
105
Location
Uk
Hello,

Does anyone know how to request a read reciept from the web.mail ?...

I have it sending out the email, just need it to tell me the email has been read.

Any Ideas?
 
MailMessage.Headers


MailMessage msg;
msg.Headers["Disposition-Notification-To"] = "<test@me.com">

should do the trick.
 
Woohoo that worked, Thanks

Well I would have never got that ... what a wierd name to call it .. oh well.

it worked like this for me:
oMsg.Headers.Item("Disposition-Notification-To") = EmailAddress

incase anyone else needs it.

Thanks again!
 
Back
Top