2 Answers
- Newest
- Most votes
- Most comments
1
Hi,
I'm sorry to hear you're experiencing problems sending mail from your Workmail organization. The problem is that the required policy on your domain that allows WorkMail to send email with your domain was removed.
There is an easy fix for this: Add your domain again in the WorkMail console. No need to remove it first. Adding the domain again will trigger checks to correct any problems. This will fix the missing policy on your domain.
Kind regards, Robin
0
I found a temporary workaround. I added a policy with the "AWS" principal set to "*", like so:
{
"Statement": [
{
"Effect": "Allow",
"Principal": {
"AWS": "*" // this is the line you will have to change
},
"Action": [
"ses:SendEmail",
"ses:SendRawEmail"
],
"Resource": ... // your domain ARN here
}
]
}
This seems like poor security to me. Does anyone have an alternative solution?
answered 4 years ago
Relevant content
- asked 3 years ago
