I'm hosting a site on Amazon's ec2 running a 64-bit version of CentOS. The site has a simple Contact Us form that needs to send an email to several addresses when submitted (pretty basic). Has anyone used Amazon's SES with Symfony2 and the Swiftmailer Bundle? And if so, do you recommend using SES or a more traditional email server for this type of task?
|
feedback
|
|
If you can stick with the free tier limits (2K daily messages), I'd definitely recommend you to stick with SES instead of a traditional email server. It's simple, easy to integrate with most platforms, and you eliminate the maintenance and operation costs (although small, they are still there) for your email server. Of course, there are still data transfer costs when using SES, as you can see on Amazon SES pricing, but that might fit your needs as well. | |||
|
feedback
|
|
Since dicember 2011 you can use smtp with switfmail but before The problem was that this bundle still don't have the implementation for work over EC2, but already exists. If you like send emails with some framework like switfmail you should have your password and key, and do something like this:
For take your key go inside AWS Management Console" > "SMTP Settings" > "create my SMTP credentials" And you are going to need install this extension : https://github.com/jmhobbs/Swiftmailer-Transport--AWS-SES but i repet this is only information. Now, you should verified your email account before in your AWS Management Console and later should work. | ||||
|
feedback
|