G Guest Nov 30, 2004 #1 Can I set the bounce back email address when I send a email through System.Web.Mail? Thanks.
J Jeffrey Palermo [MCP] Nov 30, 2004 #2 Simon, If you set the From property, a delivery failure with be sent to that address.
A Adam Nov 30, 2004 #4 Hi Simon You can try adding a header Dim webMail as New System.web.mail.mailmessage webMail.To = "(e-mail address removed)" webMail.From = "(e-mail address removed)" webMail.Headers.Add("Reply-To", "(e-mail address removed)") Regards Adam
Hi Simon You can try adding a header Dim webMail as New System.web.mail.mailmessage webMail.To = "(e-mail address removed)" webMail.From = "(e-mail address removed)" webMail.Headers.Add("Reply-To", "(e-mail address removed)") Regards Adam