I use aws-sdk-for-php and use AmazonSES to send email. The problem is that I want to set a name for the email. Example:
指定 < email_address >
Here is my source code:
$mailer = new \AmazonSES( $aws_config ); $response = $mailer->send_email($mail_data['from'],$mail_data['to']);
source share