William M.
William M.

Reputation: 379

Transitioning from AWS WorkMail to different mail server, but keeping AWS SES

We are currently using AWS WorkMail for the email addresses of our team members, and we are using AWS SES to send automated emails from an EC2 instance.

Due to different reasons we want to move the email addresses of our team members to a different email service (not hosted on AWS). However, we want to continue to send emails from noreply@... using AWS SES.

What would be the best approach for this? I was thinking of the following:

Would that be a good approach? Is there anything else I have to do or anything else I have to keep in mind when doing those changes?

Thanks a lot in advance!

Upvotes: 2

Views: 233

Answers (1)

Chris Williams
Chris Williams

Reputation: 35238

From my perspective this looks fine, I would recommend that you do it in a staged approach:

  • Lower TTL records on all records
  • Add the SPF record first as it should be non-breaking
  • Update MX records/SMTP.

Lowering the TTLs will make for a quicker rollback. Try to seperate all steps with a gap longer than the TTL so that you can be more determined over how to rollback the particular step.

Upvotes: 1

Related Questions