Overview

Mailing Setup

emailTransport: {
  from: 'cboard@cboard.io',
  host: 'smtp.sendgrid.net',
  port: 465,
  secure: true,
  service: 'Sendgrid',
  auth: {
    user: 'apikey',
    pass: process.env.SENDGRID_API_KEY
  }
}

Set SENDGRID_API_KEY in your environment — see Environment Configuration.

Swap the host, port, service, and auth fields to use any other SMTP provider instead of SendGrid.

Updated

Was this page helpful?