Configuration for sending notifications via email.

Example Gmail settings.

If you have 2FA setup for your Google account, you'll need to create an app password

Hierarchy

  • NotifierConfig
    • EmailConfig

Properties

Auth settings for SMTP

emailRecipientAddress: string

The recipient of the email (can be your email address)

Example

hello@gmail.com

Env

EMAIL_RECIPIENT_ADDRESS

emailSenderAddress: string

The sender of the email you will recieve (can be your email address)

Example

hello@gmail.com

Env

EMAIL_SENDER_ADDRESS

emailSenderName: string

The name of the email sender

Example

Epic Games Free Games

Env

EMAIL_SENDER_NAME

secure: boolean = false

true for SSL (port 465), false for TLS or unsecure

Example

true

Default

false

Env

SMTP_SECURE

smtpHost: string

The outgoing SMTP host name

Example

smtp.gmail.com

Env

SMTP_HOST

smtpPort: number

The outgoing SMTP port (SSL or TLS, see secure)

Example

587

Env

SMTP_PORT

Generated using TypeDoc