Nov 27, 2003 #1 I 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?
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?
Dec 4, 2003 #2 H HJB417 Contributor Joined Mar 5, 2003 Messages 609 Location Lowell, MA MailMessage.Headers MailMessage msg; msg.Headers["Disposition-Notification-To"] = "<test@me.com"> should do the trick.
MailMessage.Headers MailMessage msg; msg.Headers["Disposition-Notification-To"] = "<test@me.com"> should do the trick.
Dec 4, 2003 #3 I Illusion Centurion Joined Aug 7, 2003 Messages 105 Location Uk 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!
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!