diff options
Diffstat (limited to 'SendGrid/SendGridMail/ISendGrid.cs')
-rw-r--r-- | SendGrid/SendGridMail/ISendGrid.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/SendGrid/SendGridMail/ISendGrid.cs b/SendGrid/SendGridMail/ISendGrid.cs index 7855ba1..6c9d3fa 100644 --- a/SendGrid/SendGridMail/ISendGrid.cs +++ b/SendGrid/SendGridMail/ISendGrid.cs @@ -240,6 +240,12 @@ namespace SendGrid /// <param name="html">HTML that your emails will be wrapped in, containing a body replacementTag.</param>
void EnableTemplate(String html = null);
+ /// <summary>
+ /// Enable a Template Engine template via the template ID
+ /// </summary>
+ /// <param name="template_id">The ID of the Template Engine template to use.</param>
+ void EnableTemplateEngine(String templateId);
+
/// <summary>
/// Automatically sends a blind carbon copy to an address for every e-mail sent, without
/// adding that address to the header.
|