TagoIO SDK for JavaScript and TypeScript
    Preparing search index...

    Interface EmailBase

    interface EmailBase {
        attachment?: AttachmentOptions;
        from?: string;
        subject: string;
        to: string | string[];
    }
    Index

    Properties

    attachment?: AttachmentOptions

    File attachment for the email (optional)

    AttachmentOptions

    from?: string

    Sender name (optional) If not provided, the default sender name configured in TagoRUN will be used

    "My Application"
    
    subject: string

    Subject of the e-mail

    only allow with message or html

    to: string | string[]

    Recipient email address(es)

    "client@example.com"
    ["client1@example.com", "client2@example.com"]