Access is invite-only during beta. Once invited, create a key to personalize these examples. Production sending requires a separate review.
Send emails with Ghost
Point Ghost SMTP at PostShiba.
Member transactional mail (password reset, magic links) uses Ghost's SMTP config. Newsletters stay on Ghost's Mailgun integration. This page does not replace that.
config.production.json
1
{
2
"mail": {
3
"from": "hello@mail.example.com",
4
"transport": "SMTP",
5
"options": {
6
"host": "smtp.postshiba.com",
7
"port": 587,
8
"secure": false,
9
"auth": {
10
"user": "smtp_9",
11
"pass": "YOUR_PASSWORD"
12
}
13
}
14
}
15
}