Ghost SMTP Integration Guide
Guide to integrate Mailazy with your Ghost system
Prerequisites
You need to complete these given prerequisites, you can skip the step if you have already completed.
- Sign up for a Mailazy account.
- Complete Domain Authentication.
- Generate the Mailazy Access Key
Integrate Mailazy with Ghost
Setting up the server
- SSH to your virtual machine instance
- Navigate to the ghost configuration file by typing in cd /var/www/ghost
- Open up the config file by typing vi config.production.json to open it with vim.
- Next, change the setting under mail configuration.
- Paste the api key and api secret from Mailazy portal.
- You are done! You can now send invites to fellow contributors.
"mail": {
"transport": "SMTP",
"options": {
"service": "Mailazy",
"host": "smtp.mailazy.com",
"port": "587",
"secureConnection": true,
"auth": {
"user": "Mailazy Access Key",
"pass": "Mailazy Access Secret"
}
}
}
Test and verify
- Inside ghost admin panel navigate to
settings->labs
. - At the bottom of the page there is a button for sending a test email.