Nane
Nane

Reputation: 403

can i send email from any alias of domain i own with aws ses?

I pretty confused with sending emails I am using AWS-SES for sending email and I have verified custom domain my question is can I send email from any alias for that particular domain ex:- [email protected] but without the email id actually exists

Upvotes: 1

Views: 2388

Answers (1)

hephalump
hephalump

Reputation: 6164

Yes. As per the AWS documentation here:

When you verify an entire domain, you are verifying all email addresses from that domain, so you don't need to verify email addresses from that domain individually. For example, if you verify the domain example.com, you can send email from [email protected], [email protected], or any other user atexample.com.

This basically means that, once you have verified your domain, SES will accept and alias @example.com as the from address; SES has no knowledge if that alias actually exists or not, you may in fact have a catch-all where the alias doesn’t technically exist, so as long as you’ve verified the domain it allows you to specify any address as the from address.

Upvotes: 4

Related Questions