email service

Integrates Tymly with Nodemailer to offer email-sending capabilities. This service is provided via the alerts plugin and isn't offered by any of the other core plugins.

Boot config

{
  "email": {
    "from": "someone<someone@tymlyjs.com>",
    "transport": {
      "host": "smtp.some-server",
      "port": 587,
      "secure": false,
      "auth": {
        "user": "someone@tymlyjs.com",
        "pass": "secret!"
      },
      "tls": {
        "ciphers": "SSLv3"
      }
    }
  }
}
Property Type Description Required
from string The e-mail address of the sender. All e-mail addresses can be plain sender@server.com or formatted Sender Name <sender@server.com>. See Address Formatting for more details. Yes
transport object A Nodemailer configuration object, connection URL Yes

Boots before

tymlys