Type Alias PutBasicAuthConfig

SMTP basic authentication configuration. Provides server address, credentials, and sender information for standard SMTP email delivery.

type PutBasicAuthConfig = {
    emailAddress?: string;
    emailPassword?: string;
    securityType?: string;
    senderName?: string;
    serverAddress?: string;
    serverPort?: number;
    username?: string;
}
Index

Properties

emailAddress?: string

The email address that should appear in From field when sending emails with this account

emailPassword?: string

password for SMTP basic authentication

securityType?: string

SMTP security mechanism to use. Could be either 'none', 'StartTLS' or 'SSL/TLS'

senderName?: string

The name that should appear in From field when sending emails with this account

serverAddress?: string

domain name or IP address of SMTP server

serverPort?: number

smtp server port

username?: string

user name used for SMTP login