diff options
author | Shawn A. Luce <shawn@saluce.com> | 2014-05-15 16:59:50 -0500 |
---|---|---|
committer | Shawn A. Luce <shawn@saluce.com> | 2014-05-15 16:59:50 -0500 |
commit | f6a3e659081c641b45f94978fd59df5244d5c4d3 (patch) | |
tree | 763d16295c96a1259a8e8a2d8144a963ee81a221 /SendGrid/SendGridMail/ISendGrid.cs | |
parent | 64bf5a7ea806cf8974c239e9faab50020d8e8079 (diff) | |
download | sendgrid-csharp-f6a3e659081c641b45f94978fd59df5244d5c4d3.zip sendgrid-csharp-f6a3e659081c641b45f94978fd59df5244d5c4d3.tar.gz sendgrid-csharp-f6a3e659081c641b45f94978fd59df5244d5c4d3.tar.bz2 |
Added support for inline images and minor name changes in the MailBuilder
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 1e61610..534e644 100644 --- a/SendGrid/SendGridMail/ISendGrid.cs +++ b/SendGrid/SendGridMail/ISendGrid.cs @@ -164,6 +164,12 @@ namespace SendGridMail /// <param name="headers">key substitutionValues pairs</param>
void AddHeaders(IDictionary<String, String> headers);
+ /// <summary>
+ /// Gets the list of embedded images
+ /// </summary>
+ /// <returns></returns>
+ IDictionary<string, string> GetEmbeddedImages();
+
#endregion
#region SMTP API Functions
|