I’m using Mailgun to send transactional emails (login/signup), however I am unable to send from a custom email address. I’ve edited the configuration.production.json file, but Ghost/Mailgun is still sending from the standard noreply@mydomain.com instead of the @hello.mydomain.com email.
"mail": {
"from": "'Support' <support@hello.mydomain.com>",
"transport": "SMTP",
"options": {
"service": "Mailgun",
"auth": {
"user": "postmaster@hello.mydomain.com",
"pass": "password"
}
}
},
How do I get this working? The support@hello.mydomain.com is a valid email address that can receive emails.