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

LouisAW
已提問 2 年前檢視次數 384 次
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 !

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南