Pardon me if I am asking a pretty dumb question. I am new to SES and I could not find a straight answer in the AWS docs about this.
Some background info: I am using node server on EC2. I own a domain, let's say "mydomain.com". I only need AWS SES to send out emails to my customers and I plan to use AWS-SDK in my EC2 server to talk to SES. I do not need to receive any emails from customers.
According to AWS SES docs, I only need to verify either my domain OR my email address - just one of them.
Let's say I choose to verify my domain, mydomain.com, and I did not verify email. So, when I use AWS-SDK sendEmail(), what email should/can I use given that I did not verify any email?
Can I use any email as long as it is using my domain name? E.g. support@mydomain.com?
Thank you for your answer!
The verification is there to make sure you are the owner of the domain or at least an email address you want to use.
So when you verify the domain you are verified as the admin of the domain and thus have access to any of the email address on that specific domain.
To elaborate, if you can prove that you can change the DNS records of the domain (as you did for the verification) you can change any email related DNS records such as the MX records (more on the wiki) and thus any additional verification is not necessary.
I encourage you to learn more about the MX records.