Questions tagged [amazon-simple-email-service]
51 questions
6
votes
2 answers
How to change the Email FROM Name with NodeJs aws-sdk
I am sending Emails via the aws-sdk for Nodejs like this:
const params = {
Destination: {
ToAddresses: [... ],
},
Message: {
Body: {
Html: {
Data: `...`,
Charset: 'utf-8'
…

Florian Ludewig
- 4,338
- 11
- 71
- 137
5
votes
2 answers
Does Amazon SES support UTF-8 email addresses?
I tried to find details on this but was unable to find any confirmation. I'm using the AWS SDK and tried the following test (the email below is an example but gmail supports UTF-8 characters in emails):
Send an email with SES to…

Nicolas Bouvrette
- 4,295
- 1
- 39
- 53
4
votes
2 answers
How can I restrict my AWS SES verified domain to only a specific VPC IP range?
I have a verified domain that works with the IAM user I have created.
Emails go out successfully.
I am looking to lock this down, so I have first created a VPC endpoint, that allows SMTP traffic from the entire VPC. This too works without…

mrsnoobs
- 43
- 6
4
votes
1 answer
Verified AWS simple email service shows spoof warning
I verified my myemail@gmail.com email address on AWS Simple Email Service - but when I email myself, I get the warning:
Be careful with this message
This may be a spoofed message. The message claims to have been sent from your account, but
Gmail…

John Grayson
- 1,378
- 3
- 17
- 30
4
votes
1 answer
How to pass an explict Null vaule using Boto3?
Is there a way to make a boto3 client pass a parameter with an explict null value (as opposed to omitting the parameter entirely)?
I'm trying to use create_recipt_rule on the boto3 SES client to add a new receipt rule that I want to be the first…

EdC
- 2,309
- 1
- 17
- 30
3
votes
2 answers
How to create message body for Amazon SES sendRawEmail
I am trying to customize the Headers while using the AWS Node.js SDK.
It seems that the sendEmail API endpoint and accompanying SDK method doesn't support customizing Headers.
So the appropiate method to use would be sendRawEmail.
Unfortunately I…

Snowball
- 1,402
- 2
- 17
- 31
3
votes
2 answers
AWS SES Configset - Can't create an event destination to SNS using AWS cloud formation stack
I can't seem to be able to create a new AWS SES configset using AWS Cloud Formation stack. The error says 'YAML not well-formed'
Below is my json template for the CF stack:
"Resources" : {
"ConfigSet": {
"Type": "AWS::SES::ConfigurationSet",
…

Anshuman
- 577
- 1
- 8
- 23
2
votes
1 answer
Why is the AWS SDK for Java v2 not letting me send emails larger than 10 MB?
I would like to make use of the increased SES sending limit from 10MB to now up to 40MB since September 2021 to send larger Excel files as email attachment.
I used an official code example but unfortunately, I can't go beyond 10MB in size.
I get the…

MJey
- 345
- 3
- 16
2
votes
1 answer
AWS SES Email Receiving SDK for Spring Boot
We have a Spring Boot application, that's required to listen to incoming emails from AWS SES, retrieve the email and persist it to the database. I've come across documentation to send out the email from Java, but I couldn't find any specific…

Sai Rohith Reddy
- 21
- 1
2
votes
1 answer
SignatureDoesNotMatch error when sending an email from Node AWS SDK (Simple Email Service)
I try to send an email with the @aws-sdk/client-ses SDK in Node but I get:
SignatureDoesNotMatch: The request signature we calculated does not match the signature you provided. Check your AWS Secret Access Key and signing method. Consult the…

Thomas Lulé
- 420
- 4
- 15
2
votes
1 answer
Amazon Simple Email Service is ending support for Signature Version 3 effective September 30, 2020
Like most of AWS Simple Email Service clients, we have been notified that Amazon Simple Email Service is ending support for Signature Version 3 effective September 30, 2020.
https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
The…

smitra
- 597
- 3
- 6
- 18
2
votes
1 answer
Failed to use Regions.AP_SOUTH_1 sending raw email with AWS SES on Android
I use the following java code to send user emails, it works as expected if I use Regions.US_EAST_1 and related identity pool id.
AmazonSimpleEmailServiceAsyncClient client = new AmazonSimpleEmailServiceAsyncClient(new…

Run
- 2,148
- 2
- 12
- 29
2
votes
1 answer
Amazon SES How To Track Individual Link Clicks
I just finished setting up Amazon SES (Simple Email Service). It's fully connected to a domain that I own and working beautifully. I'm sending messages using PHPmailer instead of their API. I've been digging into their version of tracking, and…

Austin
- 1,619
- 7
- 25
- 51
2
votes
1 answer
Send thousands of emails with crontab in django and aws
I have a process where about 1500 mails are sent once a week.
The process I have it in a django command that I plan to put in a crontab. The process has a loop in which it is verified if the user want to receive emails and the language in which will…

Martin Peveri
- 21
- 3
1
vote
0 answers
AWS layer errors out with "Runtime.ImportModuleError - Error: Cannot find module 'tslib'"
I will try to be as clear as possible when I ask about this problem.
Context: I have a lambda function and a layer. The layer is a means of sending emails using the AWS SES. The lambda is merely a function that calls this layer to use the AWS SES to…

Orjwan98
- 11
- 2