You have two possibilities: 1) Use the SES AWS API for sending. Either with the SDK client in the language of your app or using the AWS CLI `aws ses send-email` 2) just configure your EC2 instance to relay mails to SES and send the mails to localhost via `relayhost` in postfix for example ``` relayhost = [email-smtp.us-west-1.amazonaws.com]:587 ``` There's good documentation on this at https://docs.aws.amazon.com/ses/latest/dg/postfix.html Answer from theist on repost.aws
🌐
AWS
docs.aws.amazon.com › amazon simple email service › developer guide › set up email sending with amazon ses
Set up email sending with Amazon SES - AWS Documentation
You can send an email with Amazon Simple Email Service (Amazon SES) using the Amazon SES console, the Amazon SES Simple Mail Transfer Protocol (SMTP) interface, or the Amazon SES API. You typically use the console to send test emails and manage your sending activity.
🌐
Amazon Web Services
docs.aws.amazon.com › cli › latest › reference › ses › send-email.html
send-email — AWS CLI 2.32.20 Command Reference
This email address must be either individually verified with Amazon SES, or from a domain that has been verified with Amazon SES. ... This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you ...
Discussions

How can I build an application hosted on Amazon EC2 and send emails using Amazon SES through it?
Hello everyone, I've just started exploring the vast suite of AWS and I am a bit stuck on how should to build an application hosted on Amazon EC2, which sends email to an address using Amazon SES..... More on repost.aws
🌐 repost.aws
1
0
August 16, 2022
amazon web services - AWS SES email send attack - is there a way to shut down SES sending emails until issue is resolved? - Stack Overflow
We are having a pretty bad attack on our SES service right now. Some 25K+ emails have gone out and its with a large bounce rate. And apparently emails are still going out. Is there a way we can red... More on stackoverflow.com
🌐 stackoverflow.com
How to set up AWS SES email sending history?
What is triggering SES? Are you not logging in your application calling SES? More on reddit.com
🌐 r/aws
2
3
August 30, 2022
SES (Email service) - I've been hacked
You have a strong password, but do you have MFA enabled? Passwords get leaked, guessed, etc. Always use MFA for console access. More on reddit.com
🌐 r/aws
24
9
May 10, 2022
🌐
AWS
docs.aws.amazon.com › amazon ses documentation › api reference › actions › sendemail
SendEmail - Amazon Simple Email Service
DocumentationAmazon SES DocumentationAPI Reference ... Composes an email message and immediately queues it for sending.
🌐
Medium
medium.com › geekculture › sending-emails-using-aws-ses-lambda-and-api-gateway-ec59f5d5045d
Sending Emails using AWS SES, Lambda and API Gateway | by Lois T. | Geek Culture | Medium
May 5, 2022 - CHARSET = "UTF-8" # Create SES client (edited) ses = boto3.client('ses', region=AWS_REGION) try: #Provide the contents of the email. response = ses.send_email( Destination={ 'ToAddresses': [ RECIPIENT, ], }, Message={ 'Body': { 'Html': { 'Charset': CHARSET, 'Data': BODY_HTML, }, 'Text': { 'Charset': CHARSET, 'Data': BODY_TEXT, }, }, 'Subject': { 'Charset': CHARSET, 'Data': SUBJECT, }, }, Source=SENDER ) # Display an error if something goes wrong.
🌐
Resend
resend.com
Resend · Email for developers
Companies of all sizes trust Resend to deliver their most important emails. A simple, elegant interface so you can start sending emails in minutes.
🌐
EmailToolTester
emailtooltester.com › home › blog › free email marketing services
The 17 Best Free Email Marketing Services for 2025
5 days ago - Joining the likes of Mailchimp ... Amazon SES service that provides the email infrastructure. The AWS account is optional now, though, meaning that you can use it just like any other newsletter service. They offer a generous free plan with up to 2,500 subscribers and a monthly sending limit of 10,000 ...
🌐
Semplates
semplates.io › blog › email sending with aws ses: a comprehensive guide
Email Sending with AWS SES: A Comprehensive Guide | Semplates
August 1, 2023 - Uncover the process of sending email from AWS using Amazon Simple Email Service (SES), and learn how to integrate it seamlessly into your applications for efficient email delivery.
Find elsewhere
🌐
Supabase
supabase.com › docs › guides › self-hosting › docker
Self-Hosting with Docker | Supabase Docs
1 day ago - You will need to use a production-ready SMTP server for sending emails. You can configure the SMTP server by updating the following environment variables: ... We recommend using AWS SES. It's extremely cheap and reliable.
🌐
AWS
docs.aws.amazon.com › aws hands-on tutorials › hands-on tutorials › send an email with amazon ses
Send an Email with Amazon SES - AWS Documentation
Decide whether you will send your bulk email using the Amazon SES SMTP interface or API. You can use the API either directly or through an AWS SDK
🌐
Amazon Web Services
aws.amazon.com › products › amazon ses › pricing
Amazon SES Pricing
2 days ago - Virtual Deliverability Manager costs $0.07 for each 1,000 email messages you send, in addition to other SES charges such as email sending charges. Your price will decrease once the sending volume meets certain thresholds (see pricing table above). Accessing Virtual Deliverability Manager information through the AWS console, CLI, or API costs $0.0005 for each 1,000 queries.
🌐
GeeksforGeeks
geeksforgeeks.org › cloud computing › amazon-ses
Amazon SES - GeeksforGeeks
July 23, 2025 - Feedback Loop: Provides bounce and complaint notifications to help manage the reputation of your sending domain. ... Configuration: Optionally, you can configure Amazon SES to receive emails by setting up receipt rules and actions. Processing: SES can deliver received emails to Amazon S3 buckets, invoke AWS Lambda functions, or publish notifications via Amazon SNS.
🌐
AWS
docs.aws.amazon.com › amazon simple email service › developer guide › verified identities in amazon ses › configuring identities in amazon ses › email authentication methods › using a custom mail from domain
Using a custom MAIL FROM domain - Amazon Simple Email Service
Messages that you send through Amazon SES automatically use a subdomain of amazonses.com as the default MAIL FROM domain. Sender Policy Framework (SPF) authentication successfully validates these messages because the default MAIL FROM domain matches the application that sent the email—in ...
🌐
AWS
docs.aws.amazon.com › aws sdk for go › developer guide › aws sdk for go code examples › amazon ses examples using the aws sdk for go › sending a message to an email address in amazon ses
Sending a Message to an Email Address in Amazon SES - AWS SDK for Go (version 1)
Sender = "[email protected]" // Replace [email protected] with a "To" address. If your account // is still in the sandbox, this address must be verified. Recipient = "[email protected]" // Specify a configuration set. To use a configuration // set, comment the next line and line 92.
🌐
EmailJS
emailjs.com
Send email directly from your code | EmailJS
We support both transactional email ... Amazon SES and Postmark) and personal email services (AOL, Gmail, FastMail, iCloud, Mail.ru, Outlook, Yahoo, Yandex and Zoho). ... Easily build your own template. Choose the tool most suitable for you: text editor or code editor. Templates are parameterized so that you can further customize them from your code. ... Add one of our SDK, and start sending emails! var params = { name: 'John', reply_email: '[email protected]', message: 'This is awesome!...
🌐
AWS
docs.aws.amazon.com › amazon ses documentation › api reference › actions › sendrawemail
SendRawEmail - Amazon Simple Email Service
DocumentationAmazon SES DocumentationAPI Reference ... Composes an email message and immediately queues it for sending.
🌐
AWS
docs.aws.amazon.com › aws sdk for javascript › developer guide for sdk version 3 › work with aws services in the sdk for javascript › sdk for javascript code examples › amazon simple email service examples › sending email using amazon ses
Sending email using Amazon SES - AWS SDK for JavaScript
To call the SendEmailCommand method, invoke an Amazon SES service object, passing the parameters. This example imports and uses the required AWS Service V3 package clients, V3 commands, and uses the send method in an async/await pattern. You can create this example using V2 commands instead by making some minor changes. For details, see Using v3 commands. Replace toAddress with the address to send the email to, and fromAddress with the email address to the send the email from.