EmailConfiguration: ApprovalFormsInclusionConfiguration & {
    bccEmail?: string[];
    ccEmail?: string[];
    email?: string;
    emailAttachmentsEndpoint?: EndpointConfiguration;
    emailSubjectLine?: string;
    emailTemplate?: {
        id: number;
        mapping: PdfSubmissionEventEmailTemplateMapping[];
    };
    excludedAttachmentElementIds?: string[];
    toEmail?: string[];
}

Type declaration

  • OptionalbccEmail?: string[]

    The bcc: email addresses in which a PDF copy of the form submission will be sent.

  • OptionalccEmail?: string[]

    The cc: email addresses in which a PDF copy of the form submission will be sent.

  • Optionalemail?: string

    @deprecated: use toEmail instead

  • OptionalemailAttachmentsEndpoint?: EndpointConfiguration

    Endpoint configuration for adding custom attachments to the email.

  • OptionalemailSubjectLine?: string

    The subject line of the email sent to the configured email address.

  • OptionalemailTemplate?: {
        id: number;
        mapping: PdfSubmissionEventEmailTemplateMapping[];
    }

    A reference to a custom template for the email body.

  • OptionalexcludedAttachmentElementIds?: string[]

    An array of element ids to exclude from the email when adding attachments.

  • OptionaltoEmail?: string[]

    The to: email addresses in which a PDF copy of the form submission will be sent.