Search code examples
emailamazon-ses

How can I send email Headers using Amazon SES?


I am using a Wrapper from http://sourceforge.net/projects/php-aws-ses/

I am not able to send Email Headers with

From: Name <email@example.com>

Is there any way we can send headers using amazon ses. Any other PHP Wrapper you recommend which allows us to do that?


Solution

  • Change the FROM Variable to something like this

    $m->setFrom(" Name <info@gitgrow.com>");