SES - some email address not receiving email

0

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

1개 답변
1
수락된 답변

Hi, @LouisAW

Can't receive all the destinations of @ myCompany.com?

Are recipients on your account-level suppression list?
https://docs.aws.amazon.com/ses/latest/dg/sending-email-suppression-list.html

Did you experience any failures when monitoring SES activity events?
https://docs.aws.amazon.com/ses/latest/dg/monitor-sending-activity.html

profile picture
전문가
iwasa
답변함 2년 전
profile picture
전문가
검토됨 12일 전
  • Thanks iwasa. You were right , for some reason the problematic email was in the suppression list. Thank you !

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

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

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

관련 콘텐츠