virtualMachineghost

Configure SMTP for outbound emails

Configure the email settings in the /opt/bitnami/ghost/config.production.json file by adding the code below just after the database section. Here’s an example using Gmail. Replace USERNAME and PASSWORD with your Gmail account username and password respectively.

...
"mail": {
  "from": "USERNAME@gmail.com",
  "transport": "SMTP",
  "options": {
    "host": "smtp.gmail.com",
    "service": "Gmail",
    "port": "465",
    "secure": true,
    "auth": {
      "user": "USERNAME@gmail.com",
      "pass": "PASSWORD"
    }
  }
},
...

Then, restart all services for changes to take effect:

$ sudo /opt/bitnami/ctlscript.sh restart ghost
$ sudo /opt/bitnami/ctlscript.sh restart apache

To configure the application to use other third-party SMTP services for outgoing email, such as SendGrid, refer to the FAQ.

NOTE: If you are using Gmail as the outbound email server, your application’s attempts to send outgoing emails may be blocked by Gmail if it considers the authentication attempts to be suspicious. When this happens, you will receive a Gmail security alert at the corresponding Gmail address. To proceed, you will need to manually confirm the validity of the authentication attempt before Gmail will permit the application to send outbound emails. For more information on this and other Gmail issues related to outbound email from your application, refer to our Gmail SMTP troubleshooting page.

Last modification February 9, 2023