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
0
votes
1 answer

Why do AWS-SDK API requests keep returning Missing Authentication Token?

I'm making Node.js API requests using the AWS-SDK, running from my EC2. But they keep returning error 403: {"message":"Missing Authentication Token"} I'm trying to access Amazon SES endpoints. I have a user set in IAM with one policy added. Its…
0
votes
1 answer

smtplib with AWS SES could not send emails with attachments

I use AWS SES to send emails from my instance - it works when I send just messages, but when files are attached to emails, it could not send and just gets pending. It works when I do it from a local system, but from AWS. I'm wondering what happens…
Berk
  • 263
  • 1
  • 14
0
votes
1 answer

AWS SES simple email service, time out error with Zend email

I was using Amazon AWS SES simple email service to send emails for my application. I using the following codes of Zend framework2 to send emails. It worked fine before, but I got the following error in my AWS EB EC2 instance now. However in my…
0
votes
1 answer

AWS Amplify / CDK: Updating existing SES Email Template

I created a custom resource in my amplify project for an SES template we use. import { readFileSync } from 'fs'; ... const templateHtml = readFileSync(path.resolve(__dirname, './template.html')).toString(); const templateTxt =…
Ryan
  • 145
  • 7
0
votes
2 answers

Looping HTTP post starts to fail for Amazon SES

I originally posted this at the Amazon SES forums here: https://forums.aws.amazon.com/thread.jspa?threadID=74561&tstart=0 But since the stackoverflow community is more active, I'll post it here :) Basically I have a forecah loop around a cURL post…
johnwhitney
  • 93
  • 1
  • 3
  • 12
0
votes
0 answers

Create Wildcard Domains for emails as "Verified identities" - Amazon SES

I created a web-application that agencies can use via white-label so my brand is 100% removed and replaced with theirs. I have a completely irrelevant primary domain they can use and they get a subdomain on that primary domain... we'll call it…
0
votes
1 answer

Configure AWS Cognitp UserPool to send emails with SES using CDK

I have an UserPool provisioned with AWS CDK. I now noticed that Cognito is sending emails from Cognitop itself which is restricted in rates and amount of emails. They recommend to switch to an SES configuration. After updating AWS-CDK to version…
thopaw
  • 3,796
  • 2
  • 17
  • 24
0
votes
1 answer

Using Amazon SES in one environment and gmail SMTP in the other environment in spring boot

I have a situation where I would like to use Gmail SMTP in my environment 1 and Amazon SES in environment 2 to send emails. I know how to achieve each of these individually but can't get it to work for both in such a way that I don't have to do…
Haris
  • 321
  • 3
  • 9
0
votes
1 answer

Conditionally rendering markup in HTML email and sending it using AWS SES

We are trying to add conditional logic to an HTML email template that is then sent using AWS SES services. We have managed to find a way of doing so using handlebar helpers from handlebars.js, but when using these, AWS refuses to send our email. We…
phunder
  • 1,607
  • 3
  • 17
  • 33
0
votes
4 answers

My Inbox is flooded with Amazon SES emails "Email DKIM setup FAILURE for... in US East (Ohio) region". how to stop them?

My Inbox is flooded with Amazon SES emails "Email DKIM setup FAILURE for... in US East (Ohio)" We use SES API to monitor the domains so there is no need for these emails, but I can't any settings to disable these emails. Any idea how to stop these?
Sina Salek
  • 323
  • 2
  • 14
0
votes
1 answer

Cannot send SES email from Cognito (CDK) (NOT IN SANDBOX)

I cannot use a verified email in SES with the email property of a CognitoUserPool. I have a verified email identity set up in SES. The SES account is out of sandbox mode. The SES account is in us-east-1. When I go to create a cognito userpool in my…
0
votes
0 answers

Why did AWS Pinpoint not deliver all my campaigns email messages?

Using the AWS console we sent a manual email campaign to a segment of 1000 users. Looking at the campaign delivery metrics the day after the send, I have the following stats: 1,000 Messages sent 207 Messages delivered 20.7% Delivery rate 0.97%…
alexmcfarlane
  • 1,016
  • 2
  • 13
  • 33
0
votes
0 answers

To read MIME object as input stream from AWS s3 without escape characters

I'm having a requirement where I need to read a MIME object from AWS S3 and parse it. Below is the code I'm using to read the S3 object. String awsS3Key = "myAWSS3key"; String awsS3Secret = "myAWSS3secret"; String awsS3Region = "us-west-2"; String…
0
votes
1 answer

Email sent using SES going to spam folder when display name is used

I just started using AWS SES to send emails from my application. I verified my domain in the SES dashboard, and the test emails worked fine. I'm using the .Net SDK to make API calls through SendEmail. When I set the "source" attribute to…
Josy Sclei
  • 57
  • 1
  • 10
0
votes
1 answer

Trigger Lambda function on receiving an email

I am trying to develop an solution where, I send an email to AWS and based on that, I want to trigger a Lambda function that will How should this be achieved
Abhi
  • 13
  • 3
1 2 3
99
100