Skip to content

Instantly share code, notes, and snippets.

@mariusbolik
Last active January 15, 2022 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mariusbolik/db2c68567b1197a5a2cb2e67b5935b11 to your computer and use it in GitHub Desktop.
Save mariusbolik/db2c68567b1197a5a2cb2e67b5935b11 to your computer and use it in GitHub Desktop.
Ghost Blog Zoho Email Configuration (Nodemailer)
{
...
"mail": {
"from": "\"Sender Name\" <sender@domain.com>", <- REPLACE
"transport": "SMTP",
"options": {
"service": "Zoho",
"host": "smtp.zoho.eu",
"port": 587,
"secure": false,
"auth": {
"user": "sender@domain.com", <- REPLACE
"pass": "*********" <- REPLACE
}
}
},
...
}
@mariusbolik
Copy link
Author

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 to false. 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 the from property.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment