How can I set the return-path when sending e-mails in raw mode?

An example would be great.

Regards, Donald

link|improve this question

69% accept rate
feedback

2 Answers

It may depend on what language SDK you are using but the SendEmailRequest class has a "ReturnPath" property that you set to an email address that you have access to and have also verified with Amazon. The way it works according to their documentation is that the return-path gets replaced out with an Amazon address and then they transparently forward the bounce email to the address you specified.

link|improve this answer
feedback

It's tricky. You can pass all the information for a raw mode send in the raw message. If you do, then you can pass the bounce email address as a header. Assuming you create the raw message from a .NET MailMessage, then you add it like this:

            mailMessage.Headers.Add("Return-Path", "bounce@yourdomain.com");

But, if you specify a Source parameter in your raw mode send, then Amazon docs say:

If you specify the Source parameter, then bounce notifications and complaints will be sent to this email address. This takes precedence over any Return-Path header that you might include in the raw text of the message.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.