Values.TemplateSourceThe content of the email, composed of a subject line and either an HTML part or a text-only part.
type nonrec t = {templateName : TemplateName.t;The name of the template. You use this name when you send email using the SendTemplatedEmail or SendBulkTemplatedEmail operations.
*)subjectPart : SubjectPart.t option;The subject line of the email.
*)textPart : TextPart.t option;The email body that is visible to recipients whose email clients do not display HTML content.
*)htmlPart : HtmlPart.t option;The HTML body of the email.
*)}val make :
?subjectPart:??? ->
?textPart:??? ->
?htmlPart:??? ->
templateName:TemplateName.t ->
unit ->
t