Question: How can someone use this for transaction emails? #3616
-
SubjectI would like some feedback concerning a use case DescriptionThis is a question (not a bug). I would like my app to talk to docker-mailserver to send an email to said user. Does docker mail server have a solution for this? Or can it use some other project for this? I was thinking of using |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
After you handle that, the mail will be sent outbound on port 25 to be delivered to the recipient address (destination). Usually to avoid issues with sender reputation you'll relay your mail through a service like SendGrid.
If you don't use services like SendGrid, your mail may not be delivered or more likely to arrive in spam/junk for the user. Be advised that many VPS prevent sending mail out on port 25, so you may need to rely on a relay service regardless. TL;DR:
I am moving this to Q&A discussion, as it's a question. |
Beta Was this translation helpful? Give feedback.
-
|
So if i understand correctly, this should be a client's job. If yes, then thanks. |
Beta Was this translation helpful? Give feedback.
setup email add ...).SPOOF_PROTECTION=1is enabled). So you can use whatever sender address you like (eg:noreply@example.com).After you handle that, the mail will be sent outbound on port 25 to be delivered to the recipient address (destination).
Usually to avoid issues with sender reputation you'll rel…