Type alias EmailDeliveryOptions

EmailDeliveryOptions: {
    body: string;
    recipients: string[];
    send: boolean;
    subject: string;
}

Type declaration

  • body: string

    Body of the email

  • recipients: string[]

    List of recipients

  • send: boolean

    Whether the invoice must be sent via email or not

  • subject: string

    Subject of the email