SendGrid Emails Getting Rejected as Spam

坚强是说给别人听的谎言 提交于 2020-12-01 02:11:33

问题


I'm making a user management system for my app, and I need to send users a "forgot my password" email with a token that lets them reset their account password. I signed up for SendGrid through Azure (to get the 25,000 emails per month free, which sounded like a great deal) and wrote some code to use it, but after testing my program a bit I was dismayed to find that only a couple of my emails actually went through.

After going onto the SG control panel, I found that 4 out of the 6 test emails I sent went through, and all of the others were rejected as being spam. I sent an email to mail-tester.com to see what it though my spam score was and it gave me a 4.3/10.

The email in question was a single sentence with a link to the password reset, without any images or other elements. I only sent those 6 emails out, so the volume of my emails definitely wasn't the issue. Still, I'm very puzzled as to why my messages are getting flagged as spam.

Without going to the trouble of making an elaborate authentication setup, are there any basic changes I can make to my system to make it get through to users?


回答1:


In this case it's most likely because you are sending such a short message, with a link to 'reset your password' from a non-whitelabelled email address (the email address you're sending from cannot be verified against the actual domain), and the link may also be a different URL. It's probably getting pulled up as a potential phishing email.

You can rectify this by white labeling your domain and email links via the SendGrid dashboard, it's easy to do and should improve your deliverability.

Also check out this article from the SendGrid support team about White Labeling.




回答2:


A question from 2015 which is sadly still relevant today as usage of SendGrid increases.

My organization has blocked all SendGrid mails except for those on the paid tier using fixed IP addresses with resolvable public DNS names (such as sendgrid1.sampledomain.tld) which we then whitelist.

There are now far too many domain impersonation, phishing and other spam mails coming in from SendGrid for us to allow everything from them - roughly 10 000 mails over a seven day period, which is far too many to manually report to SendGrids abuse department.

So my answer would be that switching to the paid tier of SendGrid is the better option if you like a better chance of your mails arriving intact at their destination.




回答3:


I receive only Spam Mails from Sendgrid. Goes direct to Spam folder and try to report Sendgrid everywhere I can. Maybe they get blocked by most mail servers and make them think about their policy in "hosting" all these Spammers.




回答4:


In my case my emails are marked as spam because of the anchor label different to the href being actually called. And that's because of the 'click tracking' setting of sendgrid.

So, if you have something like

<a href="http://yourdomain.com">yourdomain.com</a>

sendgrid may replace the href and you end up with something like:

<a href="http://sendgrid.net/....<very-long-url>.......">yourdomain.com</a>

The sendgrid page being called tracks the click and then redirects the user to the url you originally set. But this sometimes results in your email being marked as spam.

Try to set 'click tracking' in sendgrid dashboard to off: settings | tracking | click tracking.

details here: https://sendgrid.com/docs/ui/account-and-settings/tracking/




回答5:


Always start by setting up Domain Authentication, formerly known as domain whitelabel as @MartynDavies says. Found under Settings -> Sender Authentication in the UI. Should look like this:

https://sendgrid.com/docs/ui/account-and-settings/how-to-set-up-domain-authentication/

To identify problems have a look at Activity and choose to see deferred, drops, bounces, blocks and spam reports.

https://app.sendgrid.com/email_activity

Under Suppressions you can see details for Blocks and Bounces among others:

https://app.sendgrid.com/suppressions/blocks

https://app.sendgrid.com/suppressions/bounces

There you can see errors like:

550 5.7.1 SPF check failed. em1234.mydomain.com does not declare 11.222.33.44 as a valid sender

If it says Verified but you see errors like this then contact SendGrid support.

One thing that has worked is to upgrade from the Free plan to Essentials or Bronze via the Azure Portal. This made a lot of the emails marked as spam pass through.



来源:https://stackoverflow.com/questions/31375914/sendgrid-emails-getting-rejected-as-spam

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!