/** *
The content of the email, composed of a subject line, an HTML part, and a text-only part.
*/ export interface _Template { /** *The name of the template. You will refer to this name when you send email using the SendTemplatedEmail or SendBulkTemplatedEmail operations.
The subject line of the email.
*/ SubjectPart?: string; /** *The email body that will be visible to recipients whose email clients do not display HTML.
*/ TextPart?: string; /** *The HTML body of the email.
*/ HtmlPart?: string; } export declare type _UnmarshalledTemplate = _Template;