Skip to content

[ SES ] cannot to verify my email account

0

in my ses dashboard, my email (sender email) was approved. but, when i send bulk mail using ses in my node project, the error will shown. error message is : "

//simple error message... MessageRejected: Email address is not verified. The following identities failed the check in region AP-NORTHEAST-2: 107c4712-7553-4fe6-99dd-7ed1525500b2-[MY EMAIL ACCOUNT]@gmail.com

// more specific... Error: { Type: 'Sender', Code: 'MessageRejected', Message: 'Email address is not verified. The following identities failed the check in region AP-NORTHEAST-2: 107c4712-7553-4fe6-99dd-7ed1525500b2-[MY EMAIL ACCOUNT]@gmail.com', message: 'Email address is not verified. The following identities failed the check in region AP-NORTHEAST-2: 107c4712-7553-4fe6-99dd-7ed1525500b2-[MY EMAIL ACCOUNT]@gmail.com' },

"

after check my email account, aws send email for verifying to me like this : " Dear Amazon Web Services Customer,

We have received a request to authorize this email address for use with Amazon SES and Amazon Pinpoint in region Asia Pacific (Seoul). If you requested this verification, please go to the following URL to confirm that you are authorized to use this email address:

https://email-verification.ap-northeast-2.amazonaws.com/?Context=761018855202&X-Amz-Date=20240815T034355Z&Identity.IdentityName=weeklyties%40gmail.com&X-Amz-Algorithm=AWS4-HMAC-SHA256&Identity.IdentityType=EmailAddress&X-Amz-SignedHeaders=host&X-Amz-Credential=AKIA5MB53TU7GGUX76VI%2F20240815%2Fap-northeast-2%2Fses%2Faws4_request&Operation=ConfirmVerification&Namespace=Bacon&X-Amz-Signature=[MY SIGNATURE] "

i already took several times with above mail and clicked verification link. but, after click above link, automatically redirecting to "https://aws.amazon.com/ses/details/" i caanot solve this and cannot verify my email account...

how do i ?

1 Answer
0
Accepted Answer

Hello.

If you execute the command below and receive "Success" as a response, it is safe because the verification has been completed.
I also tried clicking on the URL of the verification email, but I was redirected to the top page of Amazon SES, so I think it's normal.
https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ses/get-identity-verification-attributes.html

aws ses get-identity-verification-attributes \
>   --identities email-address \
>   --query 'VerificationAttributes.*.VerificationStatus' \
>   --output text
EXPERT
answered a year ago
EXPERT
reviewed 10 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.