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
10
votes
2 answers

Boto SES - send_raw_email() to multiple recipients

I'm having big time problems with this issue-- another question on SO that didn't solve it is here: Send Raw Email (with attachment) to Multiple Recipients My code (that works) is simple: def send_amazon_email_with_attachment(html, subject, now,…
Jared
  • 3,651
  • 11
  • 39
  • 64
10
votes
1 answer

AWS EC2 email sending limit when using third party smtp server

Are there any limits on the number of emails I can send from an EC2 instances when I am using a third party SMTP server to send out emails ? I use the EC2 instance to call the client's smtp server. Thanks Santhosh
Santhosh S
  • 1,141
  • 6
  • 21
  • 43
10
votes
2 answers

SES AWS Error Code: SignatureDoesNotMatch, Status Code: 403

I'm getting a AWS Error Code: SignatureDoesNotMatch, Status Code: 403 when trying to send a mail through Amazon SES. I have confirmed that I am using the correct credentials which I created via https://console.aws.amazon.com/iam/home?#users and the…
Derek Gardiner
  • 165
  • 1
  • 8
10
votes
2 answers

I am using Amazon SES. How will I track the bounce email messages using PHP?

I am using Amazon SES service. But I couldn't understand how will I track the bounce email messages using PHP and keep store those email logs in database. I have a reference link of Amazon blog, but the solution given there is on…
Ranajit B
  • 131
  • 1
  • 1
  • 6
10
votes
1 answer

How to avoid double submissions to Amazon SES?

I'm sending e-mails with Amazon SES, and am wondering how to handle retries properly in case of a failure. Say I issue a POST request to the SendEmail action, but receive a timeout. There is no way to know whether the message has been sent or…
BenMorel
  • 34,448
  • 50
  • 182
  • 322
9
votes
7 answers

Can I use Amazon's SES with Symfony2 and the Swiftmailer Bundle?

I'm hosting a site on Amazon's ec2 running a 64-bit version of CentOS. The site has a simple Contact Us form that needs to send an email to several addresses when submitted (pretty basic). Has anyone used Amazon's SES with Symfony2 and the…
user843058
  • 139
  • 1
  • 2
  • 8
9
votes
2 answers

Post problems with Indy TIdHTTP

I am having issues posting to Amazon's SES Service using Indy's TIdHTTP. Here is an example of the code i am using: procedure TMainFrm.btnAmazonSESClick(Sender: TObject); var SSLHandler: TIdSSLIOHandlerSocket; HttpClient: TIdHTTP; Params:…
Zax
  • 471
  • 1
  • 4
  • 14
9
votes
1 answer

Airflow - Send email with AWS SES

Trying to send an email from apache airflow using AWS Simple Email Service (SES), and it's returning errors that are not helping me solve the problem. I believe it's a configuration issue within SES, but I'm not sure what to change. General…
Jason Green
  • 161
  • 1
  • 10
9
votes
1 answer

Amazon SES sending duplicate emails

I have switched to using Amazon SES to send our transactional alerts from our asp.net system and I'm getting calls that people are receiving duplicate emails. I have confirmed that our program is only sending the email once to each user. I received…
Wavel
  • 956
  • 8
  • 31
9
votes
2 answers

AWS SES: how to send a large amount of emails (> 10000 at a time)

I am building an email sending service (lambda, Nodejs) which will send email to list of addresses at the same time. Because of requirement: each address receives a different email content, I cannot send multiple emails in one request, but one by…
Phong Vu
  • 2,726
  • 6
  • 24
  • 52
9
votes
3 answers

SpamAssassin negative score for HEADER_FROM_DIFFERENT_DOMAINS

Some emails sent by our sever go to spam for certain recipients. E.g when sent to @outlook.com email addresses. I have been testing our emails using https://www.mail-tester.com SpamAssassin gives a score of -0.1 for the issue of…
AndyW
  • 985
  • 3
  • 10
  • 21
9
votes
0 answers

Gmail breaking link with tracking

We are sending html emails through amazon ses. It appears that gmail is altering the href tag and making it unusable. It almost looks like it's putting tracking information there instead of the original link. Below is what we are sending to ses and…
Eric Shea
  • 131
  • 5
9
votes
4 answers

AWS SES template html part is multiple lines

I am using AWS SES to send emails by following the doc https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html. The HTML part in the sample template is too short, but I need a long HTML part with multiple lines. For…
Allen Tian
  • 93
  • 1
  • 1
  • 3
9
votes
6 answers

Node.js Modules for Amazon SES

Are there any Node.js modules for Amazon Simple Email Service? Amazon Simple Email Service (Amazon SES) is a highly scalable and cost-effective bulk and transactional email-sending service for businesses and developers. Thanks in advance!
Baggz
  • 17,207
  • 4
  • 37
  • 25
9
votes
1 answer

How to add Cc and Bcc in Amazon SES SendRawEmail?

How to add the list of Cc and Bcc recipients in sendrawemail (java). I'm just adding all the recipients to one list and sending the mail. There is no separate method to set Cc and Bcc for SendRawEmailRequest. Is there any way to set object of…
Puppala Mounika
  • 103
  • 1
  • 1
  • 4