Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Redirecting EMails with Amazon SES Service

I am searching a way to redirect email which are sent to a domain whose DNS is Amazon's Route 53 service. E.g. I would like to redirect the email [email protected] to [email protected]. And [email protected] to [email protected]. Is this possible to do with Amazon's Simple EMail Services (SES)? Is there another way to do with with AWS services (except setting up an email server on EC2)?

like image 584
David Graf Avatar asked Nov 27 '13 18:11

David Graf


People also ask

Is there an email forwarding service?

Google. Gmail is the most popular free email forwarding service available today. Setting up an automatic Gmail forwarding facility is straightforward.

What method is used to send emails with SES?

With Amazon SES, you can send an email in three ways: using the console, using the Simple Mail Transfer Protocol (SMTP) interface, or using the API.

Can I configure SES with my own domain?

To successfully set up a custom MAIL FROM domain with Amazon SES, you must publish exactly one MX record to the DNS server of your MAIL FROM domain. If the MAIL FROM domain has multiple MX records, the custom MAIL FROM setup with Amazon SES will fail.


1 Answers

SES is not able to redirect messages by itself, but can call Lambda function and it can redirect message.

There is ready to use Lambda function: https://github.com/arithmetric/aws-lambda-ses-forwarder

like image 87
Bobík Avatar answered Oct 04 '22 07:10

Bobík