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
securityType?: string
senderName?: string
serverAddress?: string
serverPort?: number
username?: string