Interface EmailSenderArgs

interface EmailSenderArgs {
    emailConfig: {
        auth: {
            pass: string;
            user: string;
        };
        host: string;
        port: number;
    };
    senderName?: string;
}

Properties

emailConfig: {
    auth: {
        pass: string;
        user: string;
    };
    host: string;
    port: number;
}
senderName?: string