bounceback email address

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can I set the bounce back email address when I send a email through
System.Web.Mail?

Thanks.
 
Simon,
If you set the From property, a delivery failure with be sent to that
address.
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top