Beignet API reference
    Preparing search index...

    Interface CreateSmtpMailProviderOptions

    Options for the SMTP mail provider factory.

    interface CreateSmtpMailProviderOptions {
        from?: string;
        host?: string;
        pass?: string;
        port?: number;
        user?: string;
    }
    Index
    from?: string

    Default sender address. Overrides MAIL_FROM.

    host?: string

    SMTP server hostname. Overrides MAIL_HOST.

    pass?: string

    SMTP password. Overrides MAIL_PASS.

    port?: number

    SMTP server port. Port 465 uses SSL. Overrides MAIL_PORT.

    user?: string

    SMTP username. Overrides MAIL_USER.