While working with AWS SES, I think I have two choices to send mail. Java is the programming language I use:
- Use Amazon SES client library
- Send mail using SMTP (maybe using Java mail API).
But I guess Amazon SES client library is not using SMTP - I guess it is using HTTPS for the communication from my machine to the mail server.
Or is it another layer built on top Java SMTP library for easier configuration?
I am asking this because I could not configure SMTP port etc when I am using Option #1 above.
Can you please help me understand the difference? Thanks in advance.