3

We want to use the more advanced features of Amazon SES such as their API for having better control and visibility over emails. However I also want it to work OOB with our current system which is simply a username/password and SMTP URI. Is that still possible with Amazon SES or will everything have to be an HTTP Post?

Mark Henderson
  • 68,316
  • 31
  • 175
  • 255
MetaGuru
  • 856
  • 5
  • 22
  • 35

3 Answers3

4

Amazon just released SMTP access to SES and it's not too difficult to setup now. Here's a howto that I wrote this morning with details on setting it up: http://www.millcreeksys.com/2011/12/14/how-to-configure-your-postfix-server-to-relay-email-through-amazon-simple-email-service-ses/

Michael Jensen
  • 376
  • 2
  • 1
3

Amazon SES will require you to use their API, so I believe everything will have to be an HTTP Post.

Are you against integrating an API into your application?

EDIT: Found a solution. Let me know if that works.

JonLim
  • 243
  • 1
  • 8
  • Not at all, it's just about renewal timing. Right now we are up for renewal with our current SMTP provider and want to make the jump immediately without development effort. And then add the more advanced features later. – MetaGuru Feb 14 '11 at 19:29
  • Whoop, okay, found a solution on Serverfault, check my edit! – JonLim Feb 14 '11 at 20:11
0

Like you, I don't want to have to develop any wrappers or extra code to use amazon ses with our forum (which uses smtp) and after quite a bit of browsing, I came across this (http://computerone.co.nz/community/discussion/33/amazon-simple-email-ses-smtp-relay-service).

Once I got my production account for ses, I just put in my aws keys, verified my forum email address and changed the settings. It took literally less than a minute once I got my aws production access from amazon, as long as you follow their instructions. In the long term I will probably end up integrating ses with iss but for now it works fine.

david
  • 1