export type notifications_EmailDeliveryTarget = { /** * Body is the plain-text email body. Either body or htmlBody must be provided. */ body?: string; /** * CtaParams are key/value parameters used to build the email's call-to-action link. */ ctaParams?: Record; /** * Header is the email header. Required. */ header: string; /** * HtmlBody is HTML for the email body, sanitized to a safe subset (basic formatting, lists, and https links); other tags, inline styles, images and scripts are stripped. Either body or htmlBody must be provided. */ htmlBody?: string; /** * Subject is the email subject line. Required. */ subject: string; /** * Title is the email title. Required. */ title: string; };