Reputation: 379
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:
Setting the MX DNS-Entry to our new email server
Setting the TXT DNS-Entry from v=spf1 include:amazonses.com ~all
to v=spf1 include:amazonses.com include:ournewserver.com ~all
Sending emails using SMTP on the new server
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
Reputation: 35238
From my perspective this looks fine, I would recommend that you do it in a staged approach:
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