Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Amazon SES: Sending email Headers

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 protected]>

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

like image 478
Sanganabasu Avatar asked Jun 20 '12 07:06

Sanganabasu


People also ask

Can I use AWS SES to send email?

With Amazon SES, you can send transactional email, marketing messages, or any other type of high-quality content to your customers.

Is AWS SES deprecated?

To enhance the security of Amazon SES customers, beginning October 1, 2020, support for Signature Version 3 will be turned off (deprecated) in Amazon SES, and only Signature Version 4 will be supported going forward.

How do I see email headers?

Double-click an email message to open it outside of the Reading Pane. Click File > Properties. Header information appears in the Internet headers box. Tip: You can highlight the information in that box, press Ctrl+C to copy, and paste it into Notepad or Word to see the entire header at once.


1 Answers

Change the FROM Variable to something like this

$m->setFrom(" Name <[email protected]>");
like image 57
Harsha M V Avatar answered Sep 29 '22 12:09

Harsha M V