The region my EC2 instance is in is not supported by SES, can I still somehow send emails through another region?
Asked
Active
Viewed 3,046 times
1 Answers
16
Yes, you can actually call AWS services in any region from any region. In fact, you can call AWS services from anywhere on the Internet (such as your own home computer).
If you are using Amazon SES via SMTP, just point to the SES SMTP endpoint.
If you are using Amazon SES via API calls, pass the Region Name to the client. For example, in Python:
import boto3
client = boto3.client('ses', region_name='us-east-1')
client.send_email(...)

John Rotenstein
- 241,921
- 22
- 380
- 470