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
14
votes
7 answers

Cognito FROM email address ARN not appearing for SES

I have a domain registered with AWS Route 53 and I am using AWS Cognito for handling user registration. I am trying to configure my User Pool to use SES to send verification emails instead of Cognito. I have verified my domain in Route 53 and added…
sam
  • 2,469
  • 8
  • 37
  • 57
14
votes
1 answer

How to authorize lambda to perform ses:SendEmail with CDK?

I'm getting runtime exception: AccessDenied: User arn:aws:sts::431535252:assumed-role/...some-lambda' is not authorized to perform 'ses:SendEmail' on resource `arn:aws:ses:us-east-1:52452465462:identity/contact@somedomain.com Looking at the docs…
Daniel Birowsky Popeski
  • 8,752
  • 12
  • 60
  • 125
14
votes
3 answers

Why does my Lambda function timeout connecting to SES VPC Endpoint?

Since April 2020, AWS supports VPC endpoints for SES (Simple Email Service.) Despite this, I cannot get a Lambda to communicate with SES using the endpoint. It always times out. Perhaps this is because the SES VPC Endpoints are only supported…
Carl G
  • 17,394
  • 14
  • 91
  • 115
14
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…
14
votes
4 answers

Add embedded image in emails in AWS SES service

I am trying to write a Java app which can send emails to specify emails. In the email i also want to attach some pic. Please find my code below :- public class AmazonSESSample { static final String FROM = "abc@gmail.com"; static final…
Hello Singh
  • 183
  • 1
  • 1
  • 7
14
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
  • 15,170
  • 23
  • 107
  • 189
14
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
  • 694
  • 1
  • 5
  • 22
14
votes
3 answers

SES error missing final '@domain'

I'm using python lib boto for sending emails via SES. And when I tried to send to more than 30 (but less than 50, so limit is not exceeded) recipients, I got an error: Sender InvalidParameterValue
Vladimir Solovyov
  • 287
  • 1
  • 2
  • 11
14
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,796
  • 3
  • 18
  • 27
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,398
  • 5
  • 24
  • 46
13
votes
1 answer

AMAZON SES: Sending email to users in HTML format

I want to change my current text email format to HTML format, so that I can send an email in nicely formatted way with headers, font values etc as shown in the screenshot below. Image showing email body with header font size etc Currently I have…
sunil b
  • 685
  • 2
  • 8
  • 21
13
votes
3 answers

AWS SES SDK send email with attachments

I'm using the official AWS Golang SDK to integrate with SES but can't find any information about how to add some attachments (pdf file represented as []byte in code) to the email. Could you help me? The current email sending code looks like…
i.van
  • 776
  • 2
  • 8
  • 20
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
  • 5,479
  • 4
  • 22
  • 36
13
votes
3 answers

Customizing Amazon SNS email notifications

We are developing Custom Commenting System in which email notifications will be sent to all the subscribers to the post just like "Disqus". We found AWS provides Simple Notification System(SNS) which does a fairly good job of sending mass email…
vish.Net
  • 962
  • 2
  • 10
  • 21
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,806
  • 2
  • 35
  • 53