Hey thanks for your reply and interest in helping out. I poured over it and there was a small error in my domain that I was blind to. So it’s working now cheers
Can you elaborate what the domain’s error was?
Might help someone running into the same issue.
This worked for me too. Good spot on the port number. Ghost should fix that on their docs. Maybe it’s a regional thing? I don’t know.
Something to add however, I also had to modify the host to smtp.eu.mailgun.org. Here is a copy of my config:
"mail": {
"transport": "SMTP",
"options": {
"service": "Mailgun",
"host": "smtp.eu.mailgun.org",
"port": 465,
"secureConnection": true,
"auth": {
"user": "postmaster@xx.xx.com",
"pass": "xx"
}
},
So it’s worth mentioning that copying exactly what is found in Domain Settings in Mailgun is safest bet.
1 Like
This solved the problem for me too. Thanks!