UNPKG

@node-notifications/transport-mailer

Version:
18 lines (17 loc) 447 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.configSmtp = void 0; require('dotenv').config(); exports.configSmtp = { options: { host: process.env.MAIL_HOST, port: Number(process.env.MAIL_PORT) || 1025, auth: { user: process.env.MAIL_USER, pass: process.env.MAIL_PASS, }, }, defaults: { from: process.env.MAIL_FROM || '', }, };