Type Alias EmailComposition

type EmailComposition = {
    body?: string;
    subject?: string;
}
Index
body?: string

Body content of the email sent to recipients.

subject?: string

Subject line of the email sent to recipients.