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

How can send PDF attachment in `Node aws-sdk` sendRawEmail function?

I want to send PDF file in attachment using sendRawEmail(Node: aws-sdk) function, I have tried lots of ways, email sends successfully but PDF goes plain. Please correct my code and help to solve it. Code is here: try { data =…
12
votes
3 answers

AWS SES S3 process inbound email

I'm working on a publish by email system based on AWS SES. For all incoming emails I've set routing to save messages in an S3 bucket so I can asynchronously process them. The problem I have is that the messages are saved in the S3 bucket in a raw…
Radu
  • 1,159
  • 3
  • 22
  • 40
12
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=,…
Thiyagarajan Varadharaj
  • 10,154
  • 5
  • 21
  • 18
12
votes
3 answers

Can I use Amazon's SES to send a display name with the source email address?

I've got some .Net code I'm switching from the System.Net.MailMessage to Amazon SES and their .Net SDK v2. Is it possible to include a display name with SES using the SDK similar to the MailMessage object? The relevant part of the old code looks…
Jake Braun
  • 1,172
  • 1
  • 13
  • 34
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…
new name
  • 15,861
  • 19
  • 68
  • 114
11
votes
1 answer

Receive SES message content with Lambda?

I have a Java Lambda (RequestStreamHandler) that receives SES messages, but I'm having a tough time figuring-out where the "content" is. The record's eventSource is aws:ses, there is no "content" attribute per the documentation. The simple text…
Mike Summers
  • 2,139
  • 3
  • 27
  • 57
11
votes
5 answers

What is the required configuration steps to have a Spring Boot application send simple e-mails via AWS SES?

I have been fighting with this for several hours today. I started with the documentation at http://cloud.spring.io/spring-cloud-aws/spring-cloud-aws.html#_sending_mails which doesn't really say a lot about the specific steps. It just says that the…
deinspanjer
  • 495
  • 1
  • 7
  • 22
11
votes
1 answer

Do I get Amazon SES Free-Tier Pricing when I send emails from Heroku?

According to the Amazon SES Pricing: Pricing Details: AWS Free Usage Tier, If you call Amazon SES from an Amazon EC2 instance or through Elastic Beanstalk, you can send up to 62,000 email messages per month at no charge. Is this also true if I…
ma11hew28
  • 121,420
  • 116
  • 450
  • 651
11
votes
5 answers

How to Give Amazon SES Permission to Write to Your Amazon S3 Bucket

I want my SES(AWS) can receive emails, so I follow the following tutorial, http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-getting-started-receipt-rule.html When I am at last step - creating rule, it comes with following error,…
Yun
  • 173
  • 1
  • 12
11
votes
1 answer

AWS SES - incoming email saving attachment to S3

I have the following use case: Once and incoming email with attachment is received (SES) Invoke a lambda function to Extract that email's attachment only and save to S3 I've looked at SES SDK (nodejs) and wasn't successful in finding an API that…
George W
  • 111
  • 1
  • 3
11
votes
1 answer

Sending HTML email through amazon ses

I am sending bulk emails using amazon ses. My code is given below public void sendMail(String sender, LinkedList recipients, String subject, String body) { Destination destination = new Destination(recipients); try { …
Neeraj
  • 1,612
  • 7
  • 29
  • 47
10
votes
2 answers

Failed to retrieve credentials from EC2 Instance Metadata Service

I'm trying to send an email via the AWS SES API using the SDK. I based my code off the official documentation here: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/examples-send-using-sdk.html I'm getting as far as await…
TidyDev
  • 3,470
  • 9
  • 29
  • 51
10
votes
2 answers

Amazon SES with Flask Python

I've just started with Python on Flask. I want to learn what is the best way to send emails from Flask using the Amazon SES? I've seen the boto, but it's an interface to all the Amazon Services. I've seen some other custom examples as well. What is…
Zaeem
  • 382
  • 4
  • 16
10
votes
2 answers

SES: Accessing email body inside lambda function

I'm relatively new to AWS and I'm trying to process my email via Lambda Functions. I've built this one in node.js: 'use strict'; exports.handler = (event, context, callback) => { var http = require('http'); var data =…
Matheus Simon
  • 668
  • 11
  • 34
10
votes
2 answers

AWS SES Schedule sending of email (Node SDK)

Simple as that, I am using AWS SDK in Node to make a Lambda procedure that is in charge of sending emails according to data it receives. I would like to 'delay' that email, delivering in a date and time received, not in the specific moment that the…