Questions tagged [amazon-ses]

Amazon Simple Email Service (Amazon SES) is a highly scalable and cost-effective bulk and transactional email-sending service for businesses and developers.

Amazon SES (Simple Email Service) is an online email-sending service offered by Amazon Web Services. Amazon Simple Email Service (Amazon SES) is a highly scalable and cost-effective bulk and transactional email-sending service for businesses and developers. Amazon SES eliminates the complexity and expense of building an in-house email solution or licensing, installing, and operating a third-party email service. The service integrates with other AWS services, making it easy to send emails from applications being hosted on services such as Amazon EC2.

References

2218 questions
17
votes
1 answer

Amazon SES - Non - ASCII Characters in e-mail address

I'm trying to send an e-mail using Amazon SDK for .NET and SES. I have an e-mail which consists of special letters, for example: ęxąmplę@źćż.com For the domain part, i read about Punycode and that works fine. But for the local part of the…
17
votes
8 answers

Making PHP's mail() asynchronous

I have PHP's mail() using ssmtp which doesn't have a queue/spool, and is synchronous with AWS SES. I heard I could use SwiftMail to provide a spool, but I couldn't work out a simple recipe to use it like I do currently with mail(). I want the least…
hendry
  • 9,725
  • 18
  • 81
  • 139
17
votes
4 answers

Override Return-Path in Amazon SES

I am using Amazon SES and no matter what I do it overrides the Return-Path from the mail header. I set the Return-Path with the from email address but instead I receive something like this:…
Juan Ramón
  • 615
  • 1
  • 5
  • 19
16
votes
5 answers

How to configure Spring JavaMailSender for SES using SMTP?

We are trying to configure Spring JavaMailSender to work with Amazon's SES service using SMTP, but we are getting this error: javax.mail.MessagingException: Could not connect to SMTP host: email-smtp.us-east-1.amazonaws.com, port: 465, response:…
rreyes1979
  • 1,855
  • 3
  • 23
  • 34
16
votes
1 answer

How can add/verify dynamically domains and email addresses to amazon SES?

I used a service for mailing my users and that service uses amazon SES to send emails. When I signed up and did setup a sender agent, that service just required two things: company name which I typed "cmpny". agent name which I selected from a…
geoom
  • 6,279
  • 2
  • 26
  • 37
16
votes
3 answers

Using AWS SES SMTP- error 554 Message rejected: Email address is not verified. The following identities failed the check in region

Getting this error on the email address I am trying to send an email to! Not sure why I need to verify an email I am sending to which doesn't belong to me? DEBUG SMTP: MessagingException while sending, THROW:…
Daniel Haughton
  • 1,085
  • 5
  • 20
  • 45
16
votes
3 answers

Amazon SES Stops Working

I set up Amazon SES and it initially worked for a few hours, then all of a sudden stopped. All of the e-mails I'm sending as, and our domain, have been verified. We are no sending bulk e-mails - only a few hundred per day. Whenever I make changes to…
StronglyTyped
  • 2,134
  • 5
  • 28
  • 48
16
votes
2 answers

How to create an email account and set up email receiver when using AWS EC2 and SES?

So we are planning to use AWS SES for sending emails. But how do we set up the email receivers? And how do we create an email accounts? When activating AWS SES, it asks to verify an email account (eg. help@example.org)... I tried to create a mail…
Sherzod
  • 5,041
  • 10
  • 47
  • 66
16
votes
1 answer

Possible to set reply-to address different than from address in grails mail plugin?

I'm using the Grails mail plugin to send email through Amazon SES. Amazon SES enforces the 'from' address to be verified, meaning a domain under my control, which is fine, but much of the mail I send is on behalf of customers in the system who want…
Peter
  • 29,498
  • 21
  • 89
  • 122
15
votes
7 answers

Could not connect to SMTP host: email-smtp.us-east-1.amazonaws.com, port: 465, response: -1

I am trying to send email with Amazon's SES/SMTP and I am getting the following error: javax.mail.MessagingException: Could not connect to SMTP host: email-smtp.us-east-1.amazonaws.com, port: 465, response: -1 Here is how I am trying to send the…
balteo
  • 23,602
  • 63
  • 219
  • 412
15
votes
2 answers

Is there a way to specify a default configuration set on Amazon SES?

I currently am using Firebase Authentication and am using Amazon SES as the SMTP server to send Firebase emails such as email verification, forgot password, etc. I also currently have a configuration set in Amazon SES that will send delivery, click,…
15
votes
1 answer

Use Amazon SES and Google GSuite for the same domain

I have a domain that I manage using Amazon Route 53. It contains TXT/MX records of Amazon Simple Email Service, that I use to process incoming email to a certain email address via AWS Lambda. I also need to register the domain to Google Admin, i.e.…
15
votes
4 answers

Lambda S3 Put function not triggering for larger files

I am currently exploring storing the attachments of an email separately from the .eml file itself. I have an SES rule set that delivers an inbound email to a bucket. When the bucket retrieves the email, an S3 Put Lambda function parses the raw email…
dakkerns
  • 151
  • 1
  • 3
15
votes
4 answers

Getting "InvalidParameterValue - Missing final '@domain'" from Amazon SES while sending an email with unicode characters in destination address

Amazon SES returns the error mentioned above when i try to send an email that contains unicode characters in the To: field. Amazon SES Documentation says that such email addresses should be sent in MIME encoded-word syntax, which the mail gem (used…
vinayvinay
  • 151
  • 1
  • 1
  • 6
14
votes
4 answers

Amazon SES SMTP Python Usage

I am trying to diagnose why sending email through Amazon SES is not working via python. The following example demonstrates the problem, where user and pass are set to the appropriate credentials. >>> import smtplib >>> s =…
Kevin Dolan
  • 4,952
  • 3
  • 35
  • 47