Email Recieved/Read Receipt

0
I would like to know if an email has arrived at a clients inbox, and also if they have opened it? I know this is possible in gmail, but is this also possible within mendix? https://donotpay.com/learn/how-to-check-if-email-has-been-delivered-in-gmail/ (using the forgotpassword/emailtemplate email module btw)
asked
1 answers
1

I believe delivery receipt is down to your email provider exposing this information to you. Some providers will give you a webhook, so you can provide an endpoint URL such as a REST service and listen for incoming messages about the status of the emails you’ve sent. Sendgrid offers this sort of functionality.

https://sendgrid.com/blog/the-nine-events-of-email/

I don’t think this is something supported by ForgotPassword or Email Template modules, it would require deeper integration with the email provider. If you are using Sendgrid, then the Sendgrid module in the Marketplace looks to offer this functionality.

https://marketplace.mendix.com/link/component/118937

answered