SongGuess
    Preparing search index...

    A binding that allows a Worker to send email messages.

    interface SendEmail {
        send(message: EmailMessage): Promise<EmailSendResult>;
        send(
            builder: {
                attachments?: EmailAttachment[];
                bcc?: string | EmailAddress | (string | EmailAddress)[];
                cc?: string | EmailAddress | (string | EmailAddress)[];
                from: string | EmailAddress;
                headers?: Record<string, string>;
                html?: string;
                replyTo?: string | EmailAddress;
                subject: string;
                text?: string;
                to: string | EmailAddress | (string | EmailAddress)[];
            },
        ): Promise<EmailSendResult>;
    }
    Index

    Methods

    Methods