I had some trouble setting Mailgun for Ghost (Blog) with a server hosted on google cloud (compute engine). In fact it's really easy. Just replace the mail configuration in config.js with this gist and it's done !
mail: { | |
transport: 'SMTP', | |
options: { | |
service: 'Mailgun', | |
port: 2525, | |
auth: { | |
user: 'postmaster@domain.example', | |
pass: 'myMailGunPassword' | |
} | |
} | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment