UNPKG

n8n

Version:

n8n Workflow Automation Tool

11 lines (10 loc) 384 B
import { GlobalConfig } from '@n8n/config'; import { Logger } from '../../Logger'; import type { MailData, SendEmailResult } from './Interfaces'; export declare class NodeMailer { private readonly logger; readonly sender: string; private transport; constructor(globalConfig: GlobalConfig, logger: Logger); sendMail(mailData: MailData): Promise<SendEmailResult>; }