namelos
namelos

Reputation: 133

How to set up Ruby on Rails Action Mailbox with Amazon SES?

I'm trying to migrate the email sending and receiving service from another mail provider to Amazon SES. The action mailer is working fine, but I tried for a while and didn't find any documentation on how to receive emails with SES, except some blog posts claim that Action Mailbox supports SES:

It comes with ingresses for Amazon SES, Mailgun...

There is only documentation on the official guides for Mailgun and Sendgrid, and several others but no SES. Any thoughts on where should I start?

Upvotes: 7

Views: 1348

Answers (1)

Derk-Jan
Derk-Jan

Reputation: 1954

It was removed 2 years ago. See this commit. Since 2020 there has also been this PR which is still open at the moment I write this.

However, the functionality of that PR has been published as action_mailbox_amazon_ingress. There is some talk to port it to aws-sdk-rails.

Upvotes: 3

Related Questions