How do I add "from" in an email message using Amazon SES in PHP?

I can't find it in their SDK:

 * Keys for the $destination parameter:
 *  ToAddresses - _string_|_array_ (Optional) The To: field(s) of the message. Pass a string for a single value, or an indexed array for multiple values.
 *  CcAddresses - _string_|_array_ (Optional) The CC: field(s) of the message. Pass a string for a single value, or an indexed array for multiple values.
 *  BccAddresses - _string_|_array_ (Optional) The BCC: field(s) of the message. Pass a string for a single value, or an indexed array for multiple values.
link|improve this question

74% accept rate
feedback

1 Answer

up vote 1 down vote accepted

http://docs.amazonwebservices.com/AWSSDKforPHP/latest/#m=AmazonSES/send_email

The $source parameter is essentially the "From", if you mean "Reply-To" you can set that also within the $opt parameter.

link|improve this answer
Yep. Usage examples are all throughout the official docs. – Skyler Johnson Apr 30 '11 at 17:57
feedback

Your Answer

 
or
required, but never shown

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