Browse through the questions and answers listed below or filter and sort to narrow down your results.
SES: Configuration -> Receive Email is not available
Per https://docs.aws.amazon.com/ses/latest/dg/receiving-email-receipt-rules-console-walkthrough.html, I should be able to see Configuration->Email Receiving In the navigation pane.
However this option is not present.
Is that because my account in a sandbox? Although documentation for the sanboxed account describes receiving capability.
Accepted AnswerAmazon Simple Email Service
1
answers
0
votes
20
views
asked 11 days ago
0
answers
0
votes
44
views
asked 13 days ago
ACCOUNT_THROTTLED in BulkEmailEntryResult
Hi,
I used sesv2.sendBulkEmail (@aws-sdk/client-sesv2) to send 18000+ emails but have a problem with ACCOUNT_THROTTLED error that returns in BulkEmailEntryResult. How can I handle this case?
(My daily sending quota is 50,000 emails per 24-hour period and My maximum send rate is 14 emails per second.)
I use sleep(5000) to slowdown my request, it work for first 500 emails but my service can't wait that long.
Accepted AnswerAmazon Simple Email Service
1
answers
0
votes
7
views
asked 14 days ago
1
answers
0
votes
16
views
asked 16 days ago
sendBulkEmail got SUCCESS status but didn't receive email.
Hi,
I use sendBulkEmail in @aws-sdk/client-sesv2. I got my email in first time but after that, I never get it even changing the template name or recipient. I check the status at Account dashboard it has Sends request about 10 counts but Emails sent only 1 count. How can I fix or check my email status?
Accepted AnswerAmazon Simple Email Service
1
answers
0
votes
9
views
asked 21 days ago
1
answers
0
votes
43
views
asked a month ago
Easy way to get SES Sending Stats per Domain
Hi, anyone know an easy way to get SES email sending stats on a per-domain basis? E.g. in CloudWatch. I'm looking to delete a domain but want to check it's not being used first.
Accepted AnswerAmazon Simple Email Service
1
answers
0
votes
25
views
asked a month ago
Logging which account used which email address
I am trying to figure out what email address is being used by a specific IAM user. I followed the article here: https://aws.amazon.com/premiumsupport/knowledge-center/ses-iam-user-sent-email/ to log which IAM user is sending emails through SES. But I am unsure what dimension to use to also get the email address used. I can't find any documentation on the dimensions available for either Message Tag or Email Header.
Thanks,
Josh
Accepted AnswerAmazon Simple Email Service
1
answers
0
votes
12
views
asked a month ago
0
answers
0
votes
25
views
asked a month ago
1
answers
0
votes
31
views
asked a month ago
moving a SES identity from one account to another account
Hi, as I'm still learning aws, I though this would be a good place for me to keep learning. So, I have a task coming up where we need to move/migrate a ses identity/account from one aws account to another aws account. Is this something that is possible? or do we just need to delete source/create new?
thanks
Accepted AnswerAmazon Simple Email Service
1
answers
0
votes
42
views
asked a month ago
SES - some email address not receiving email
Hi,
I have setup SES in my backend project to send "RESET PASSWORD" email.
For some reason it is working with 90% of the email address but some of them are not receiving email.
My personal @gmail.com receive them but my personal @myCompany.com dont receive them (Also hosted by gmail)
```
using (var client = new System.Net.Mail.SmtpClient(HOST, PORT))
{
// Pass SMTP credentials
var SMTP_USERNAME = _config.GetValue<string>(
"SMTP_USERNAME");
var SMTP_PASSWORD = _config.GetValue<string>(
"SMTP_PASSWORD");
client.Credentials =
new NetworkCredential(SMTP_USERNAME, SMTP_PASSWORD);
// Enable SSL encryption
client.EnableSsl = true;
// Try to send the message. Show status in console.
client.Send(message);
}
}
```
I don't have any exception sending the email.
In the SES console i can see the email being Sent.
Also sending an email FROM the SES console said success but no email received.
Both Identity (Domain and Email address) are verified.
Im running out of ideas, any help is greatly appreciated.
Thanks
Accepted AnswerAmazon Simple Email Service
1
answers
0
votes
25
views
asked a month ago
0
answers
0
votes
13
views
asked 2 months ago
Amazon simple email service converts html tags
I have a java application that uses Amazon SES for email. The email template is constructed within the Java application. I needed to add a image link to the email template and I added a standard email IMG tag like below
```
<img src="<PATH TO THE IMAGE OMITED>" alt="alt text omitted" >
```
But when the email comes through, rather than show the image, I see the HTML code on the email body.
When I look at the email source I see the '<', '>' and and quote signs have been converted like below.
```
<p>
THIS IS AN AUTO-GENERATED EMAIL. DO NOT REPLY.
</p><img src="<a href="https://protect-au.mimecast.com/s/VywertyMqHLlkUn?domain=blah.com">https://IMAGE_PATH OMMITTED.png</a>" alt="" >
```
It seems Amazon SES is converting some of the tags within the image bot not the ahref tag or even the P tag.
This was tested on a local email server and a fake smtp server and there was no conversion happening.
Amazon SES is setup on a client environment and I have no direct access to it.
What could be causing this? Could you please point in the likely direction.
Accepted AnswerAmazon Simple Email Service
1
answers
0
votes
7
views
asked 2 months ago
Amazon SES: SMTP interface to send email based on template
Hello,
Amazon SES: is is possible to send emails via SMTP interface leveraging SES email templates?
If so, I would appreciate some links where I can find more information how to do it.
Of course, it is possible to send templated emails using SDK/CLI, the question is how to do it using SMTP interface.
Thanks,
Mariusz
Accepted AnswerAmazon Simple Email Service
1
answers
0
votes
19
views
asked 2 months ago
1
answers
0
votes
19
views
asked 2 months ago
1
answers
0
votes
9
views
asked 2 months ago
SES refuses to send email from own domain even though domain and email address are verified + no sandbox
Hi,
I have added my own domain (a namecheap domain) to AWS SES and created the CNAME records there about a week ago to use Easy DKIM. I added an email address within this domain, say test@example.com, example.com being the aforementioned domain. Both were successfully verified by AWS as it can be seen by the green checkmark: [image](https://i.imgur.com/cQDfxhe.png)
However, when I want to send an email from this domain via boto3, I get a MessageRejected error: "An error occurred (MessageRejected) when calling the SendEmail operation: Email address is not verified. The following identities failed the check in region my-region: correct-arn-of-identity."
The region is correct and my account is not in the sandbox anymore. It works to send from an existing email address, eg example@gmail.com.
How can I send emails from my own domain?
Edit as requested, here is the relevant code:
ses_client = boto3.client("ses")
response = ses_client.send_email(
Source=source_email_address,
Destination={
"ToAddresses": [
destination_email_address,
],
},
Message={
"Subject": {"Data": subject, "Charset": "utf-8"},
"Body": {
"Text": {"Data": email_txt, "Charset": "utf-8"},
},
},
SourceArn=f"arn:aws:ses:MyRegion:MyAWSAccount:identity/{source_email_address}",
ReturnPathArn=f"arn:aws:ses:MyRegion:MyAWSAccount:identity/{source_email_address}",
)
Accepted AnswerAmazon Simple Email Service
1
answers
0
votes
10
views
asked 2 months ago
0
answers
0
votes
8
views
asked 2 months ago
Sending SES emails using UTF-8 characters in the address
I was curious if there was any update to this [Stackoverflow question](https://stackoverflow.com/questions/38808009/does-amazon-ses-support-utf-8-email-addresses) but noticed that the original post has been archived and I could not find any details on what is supported by SES in the current documentation.
Basically, is it possible today to send an email to myemail+✖@gmail.com (where ✖ is a UTF-8 character) or is SES still limited by [RFC-822](http://www.ietf.org/rfc/rfc0822.txt) that only supports ASCII characters?
Accepted AnswerAmazon Simple Email Service
1
answers
0
votes
40
views
asked 2 months ago
1
answers
0
votes
26
views
asked 3 months ago
SES Mail From - Can't Receive Email OR Fail Validation - Pick your poison
The address specified in the console to use for the receiving MX record (10 feedback-smtp.us-east-1.amazonses.com) does pass SES "mail from" validation/setup, but it does not allow us to actually receive email. We constantly receive 550 User Not Found reject errors. However, we did manage to setup SES to receive email successfully by using the MX address (10 inbound-smtp.us-east-1.amazonaws.com) we found defined here (https://docs.aws.amazon.com/ses/latest/dg/receiving-email-mx-record.html ) instead of the one defined in the console.
Now the automated SES validator checked our MX record and terminated our use of SES because the inbound address does not specify the same address as shown in the console (which does not allow receiving email). We need to either get the address that was working (10 inbound-smtp.us-east-1.amazonaws.com) replaced in the validator check and console OR we need the address that the validator uses and is specified in the console (10 feedback-smtp.us-east-1.amazonses.com) to allow us to actually receive emails.
Can anyone please provide some guidance?
Accepted AnswerAmazon Simple Email Service
10
answers
0
votes
44
views
asked 3 months ago