Sending Email failed in Workmail

0

I have a newly set up workmail organization and account. However, it was unable to send emails and it always got the below error. I have searched a lot of documentation and followed the steps but no luck.

Can anybody help? Thanks

Sending Email failed. Could not send email.

SubmitId: xxxxxxxxx

Your administrator needs to give permissions to WorkMail to perform e-mail sending on your behalf. To give WorkMail sending permissions, follow the instructions here:

https://docs.aws.amazon.com/workmail/latest/adminguide/editing_domains.html

3개 답변
1

HI,

If anyone else comes across this problem, you can solve this by adding the domain again in the WorkMail console. This will trigger a workflow to check various setting for the domain and correct any problems.

Kind regards, Robin

AWS
전문가
답변함 일 년 전
0

I found the solution myself. Here are the steps:

  1. Goto SES -> Verified identities -> click the domain that you want to send email
  2. Goto Authorization -> Create Policy -> add the below policy
  3. The resource name is the ARN of your domain

{ "Version": "2012-10-17", "Statement": [ { "Sid": "stmtxxxxxxx", "Effect": "Allow", "Principal": { "Service": "workmail.us-west-2.amazonaws.com" }, "Action": "ses:*", "Resource": "arn:aws:ses:us-west-2:xxxxxxx, "Condition": {} } ] }

답변함 일 년 전
0

Hello,

If you're experiencing difficulties while trying to send email from your WorkMail Organization and you're receiving an email back to your inbox containing an error message similar to the one below:

Your administrator needs to give permissions to WorkMail to perform e-mail sending on your behalf.

Please follow these steps:

  1. From the AWS Console, go to Amazon SES.
  2. In the side panel, locate Verified Identities (under Configuration) and navigate to this section.
  3. Identify the Identity you're using to send email from WorkMail and open it by clicking on its name.
  4. Click on the Create Policy button.
  5. Click on Custom Policy.
  6. Attach a policy like the one below:
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "AuthorizeWorkMail",
      "Effect": "Allow",
      "Principal": {
        "Service": "workmail.REGION.amazonaws.com"
      },
      "Action": [
        "ses:*"
      ],
      "Resource": "arn:aws:ses:REGION:AWS_ACCOUNT_ID:identity/WORKMAIL-DOMAIN-NAME",
      "Condition": {
        "ArnEquals": {
          "aws:SourceArn": "arn:aws:workmail:REGION:AWS_ACCOUNT_ID:organization/WORKMAIL_ORGANIZATION_ID"
        }
      }
    }
  ]
}

Note: you need customize the policy above by replacing REGION, AWS_ACCOUNT, WORKMAIL-DOMAIN-NAME and WORKMAIL_ORGANIZATION_ID with your own values .

Here is some additional documentation: https://docs.aws.amazon.com/workmail/latest/adminguide/editing_domains.html

Hope this helps

답변함 4달 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠