hasjob
hasjob copied to clipboard
Lookup email in Sendgrid's drop/unsubscribe/block list
When a user's email bounces, Sendgrid adds it to a block list and drops all subsequent email to them. This can be frustrating for users with new email accounts who keep trying and don't receive any email.
Hasjob's email validator (or the confirm page) should consult Sendgrid's API and give the user a heads-up if there's an issue, asking the user to contact support if necessary.
@jace This is primary business logic of email service provider. They do in order to maintain their/client's IP reputation at ESP side.
I suggest you to:
- Create a webhook at sendgrid platform on every blocked contacts (Blocked by sendgrid after getting bounced.)
- Make a entry to your database.
- If a user tries to register on your website, unblock them using API.
- Unblock them using API (If available) else contact their support for it.
Related: #226