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

1755 questions
14
votes
2 answers

Status Code 403: SignatureDoesNotMatch when I am using Amazon SES

I created a new Amazon account. Created SMTP Credentials and used AWS Java SDK to send emails. But it is failing with following error: Status Code: 403, AWS Service: AmazonSimpleEmailService, AWS Request ID: xyz, AWS Error Code:…
Deepak Singhal
  • 9,577
  • 10
  • 50
  • 92
13
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
  • 20,469
  • 52
  • 196
  • 362
13
votes
5 answers

Send Email From Amazon SES in ASP.NET MVC App

I host my web app which is written in .net mvc2 on amazon ec2. currrently use gmail smtp to send email. beacuse of google for startup email quota cant send more than 500 email a day. So decide to move amazon ses. How can use amazon ses with asp.net…
gandil
  • 5,348
  • 4
  • 22
  • 44
13
votes
2 answers

Configuring Cognito user pool to send emails with SES

This morning, I noticed an alert in my user pool settings that I hadn't noticed before: I looked at the settings screen and there's a radio button: I already have a from address. How do I set that setting to Yes with CloudFormation? The Cognito…
13
votes
5 answers

Do AWS support SES in CloudFormation?

I'm trying to figure out how to automate the creation of several cloud resources in AWS, using CloudFormation. Now I need to include the creation of SES (Simple Email Service) domain, but couldn't find the documentation, but I've already checked:…
13
votes
4 answers

How to send email to non-verified email address using AWS SES

I am developing PHP application that, after sign-up, sends an activation mail to the registered email address using Amazon SES (Simple Email Service). But SES is only sending emails to verified users. How can I send the activation link to any…
user3228848
  • 141
  • 1
  • 1
  • 5
13
votes
2 answers

Why does Amazon EC2 limit port 25?

It says here... Amazon EC2 imposes default sending limits on email sent via port 25 and throttles outbound connections if you attempt to exceed those limits. To remove these limits, submit a Request to Remove Email Sending Limitations. You…
Ian Warburton
  • 13,336
  • 19
  • 85
  • 164
13
votes
5 answers

Nodemailer and Amazon SES

My structure: site -- node_modules ---- nodemailer -- webclient ---- js ------- controller.js site/node_modules/nodemailer site/webclient/js/controller.js site/webclient/js/controller.js: var nodemailer =…
O P
  • 1,997
  • 9
  • 33
  • 66
13
votes
5 answers

Using PHPMailer and Amazon SES

I am using Amazon SES. I am trying to send an email from my PHP script using PHPMailer. I already verified two email ids and trying to send mail from and to this mail ids. But It throws the following error. ERROR SERVER -> CLIENT: 220…
AKA
  • 2,601
  • 4
  • 17
  • 34
13
votes
1 answer

How to get response from SES when using C# SMTP API

The .Net SmtpClient's Send method returns void. It only throws two exceptions, SmtpException and a FailureToSendToRecipientsException (or something like that). When using SES, for successful email delivery SES sends back a 200 OK message with the…
Amith George
  • 5,702
  • 2
  • 32
  • 50
12
votes
5 answers

Email opened/not tracking from nodejs nodemailer

What I know I want to implement the email opened/not tracking in one of my websites. after searching i found that email-opened/not tracking is done by sending an embedded image along with email(typically 1 px transparent). when some one opens the…
raj
  • 634
  • 5
  • 19
12
votes
1 answer

Not receiving Amazon SES Bounce Notifications

I have configured postfix on my server to deliver only @gmail.com mails to Amazon SES: gmail.com smtp:email-smtp.eu-west-1.amazonaws.com:25 * : Also, I configured in the Amazon SES console to receive Bounces and Complains…
Victor Dodon
  • 1,617
  • 2
  • 18
  • 27
12
votes
1 answer

Distinguish bounce and OOTO with Amazon SES

I'm sending emails with Amazon SES and processing notifications with SNS. I just realized that I have been processing OOTO messages as bounces and I would like to fix that so I properly distinguish the two. Both OOTO and bounce notifications have…
gaefan
  • 14,322
  • 16
  • 52
  • 100
11
votes
5 answers

Amazon SES SMTP Connection timed out

I have been trying to set up an email notification for my application using Sendmail along with SES on CentOS 6.5. As per AWS document, I have configured sendmail with SES, The maillog says, sendmail[29711]: s2QFCjnu027924: to=,…
thiyagu114
  • 8,904
  • 5
  • 19
  • 18
10
votes
3 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,474
  • 3
  • 30
  • 45