An email message that can be sent from a Worker.

interface EmailMessage {
    from: string;
    to: string;
}

Hierarchy (view full)

Properties

Properties

from: string

Envelope From attribute of the email message.

to: string

Envelope To attribute of the email message.