UNPKG

notification-services

Version:

Use email, sms and custom notification services for node.js application easily

15 lines (14 loc) 428 B
export declare const SESConfig: (awsAccessId: string, awsAccessKey: string, apiVersion: string, region: string) => void; export declare const SESSend: (mailOptions: { from?: string; to?: string; cc?: string; bcc?: string; subject?: string; text?: string; html?: string; attachments?: []; }, callback: { (res: any, err: any): void; (arg0: {} | null, arg1: Error | null): void; }) => void;