1

PHPでAmazonSESを使用してEメールメッセージに「from」を追加するにはどうすればよいですか?

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.
4

1 に答える 1

1

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

$source パラメーターは基本的に "From" です。"Reply-To" を意味する場合は、$opt パラメーター内でも設定できます。

于 2011-04-25T19:51:53.423 に答える