I have started to use Amazon SES service for sending all my project e-mails. Currently i have converted all my code to use it. But still lacking on examples for implementing e-mails with attachment as MIME types and HEADERS are not my strong side.

Could someone share some wisdom on how exactly i can get SendRawEmail to work? What 3rd-party libraries i should be using to create legit e-mail with attachments?

I use latest aws-ses-sdk for php.

Thanks.

link|improve this question

1  
I think the part about "spam" can not be specifically answered, but how to create a "raw" email can (spam scroring is more dependent on the actual message content then how you create the actual mail message technically). – hakre Oct 7 '11 at 0:25
@hakre Oh i see, so what im looking for is how to properly setup raw e-mail with proper headers and mime types. – arma Oct 7 '11 at 4:33
1  
Checkout swiftmailer.org, you might implement a custom transport for aws-ses or you can just get the raw message from it. – hakre Oct 7 '11 at 9:59
@hakre yeah i was thinking about switfmailer, use it to compose a message with attachment then pass it in to SendRawEmail. Will SES accept the output of switftmailer? Well i guess they all work on standarts so it should work. – arma Oct 10 '11 at 17:18
feedback

1 Answer

up vote 0 down vote accepted

Thanks to suggestions from hakre i found this swift mailer transport https://github.com/jmhobbs/Swiftmailer-Transport--AWS-SES and now i use swift mailer to handle all my e-mails with attachment and without directly to SES.

link|improve this answer
Can you please post your code to add an attachement. I am able to send email with it, but not sure how to send a file attachment. – Alexandre H. Tremblay Jan 8 at 14:50
@ Alexandre H. Tremblay just use it same as you would attach via swiftmailer. Look for documentation of swiftmailer. – arma Jan 27 at 12:14
feedback

Your Answer

 
or
required, but never shown

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