Created
August 2, 2016 13:25
-
-
Save antoine-briand/d25bafd914be06cd847bda9ba6fc8c6d to your computer and use it in GitHub Desktop.
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 !
This file contains hidden or 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: { | |
transport: 'SMTP', | |
options: { | |
service: 'Mailgun', | |
port: 2525, | |
auth: { | |
user: '[email protected]', | |
pass: 'myMailGunPassword' | |
} | |
} | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment