Last active
January 15, 2022 14:00
-
-
Save mariusbolik/db2c68567b1197a5a2cb2e67b5935b11 to your computer and use it in GitHub Desktop.
Ghost Blog Zoho Email Configuration (Nodemailer)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
... | |
"mail": { | |
"from": "\"Sender Name\" <[email protected]>", <- REPLACE | |
"transport": "SMTP", | |
"options": { | |
"service": "Zoho", | |
"host": "smtp.zoho.eu", | |
"port": 587, | |
"secure": false, | |
"auth": { | |
"user": "[email protected]", <- REPLACE | |
"pass": "*********" <- REPLACE | |
} | |
} | |
}, | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Maybe you landed here because you get an error like e.g.
Failed to send email. Reason: Message failed: 553 Relaying disallowed as noreply@localhost.
The configuration above worked for me. Don't be scared to set
secure
tofalse
. The connection is started in insecure plain text mode and only later upgraded with STARTTLS.Also make sure that
user
is the same email like in thefrom
property.