diff options
author | Brandon West <brawest@gmail.com> | 2014-10-07 14:54:52 -0600 |
---|---|---|
committer | Brandon West <brawest@gmail.com> | 2014-10-07 14:54:52 -0600 |
commit | ca91fad22dfec2cd1219267fe979c1d9a33a522e (patch) | |
tree | 9c15fbba66ff518d71fa9235bfd6b665c644399d /SendGrid/SendGridMail/ISendGrid.cs | |
parent | c8bbb307de6ab5d571797d2f210a0ec0f5531d3a (diff) | |
parent | 35c7bf635ab4b6fb9aeade60f4d4e60c2f2f929b (diff) | |
download | sendgrid-csharp-ca91fad22dfec2cd1219267fe979c1d9a33a522e.zip sendgrid-csharp-ca91fad22dfec2cd1219267fe979c1d9a33a522e.tar.gz sendgrid-csharp-ca91fad22dfec2cd1219267fe979c1d9a33a522e.tar.bz2 |
Merge pull request #80 from pianomanjh/feature/cc-bcc
add CC, Bcc support
Diffstat (limited to 'SendGrid/SendGridMail/ISendGrid.cs')
-rw-r--r-- | SendGrid/SendGridMail/ISendGrid.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/SendGrid/SendGridMail/ISendGrid.cs b/SendGrid/SendGridMail/ISendGrid.cs index 6c9d3fa..1d5ea8f 100644 --- a/SendGrid/SendGridMail/ISendGrid.cs +++ b/SendGrid/SendGridMail/ISendGrid.cs @@ -16,6 +16,8 @@ namespace SendGrid MailAddress From { get; set; }
MailAddress[] To { get; set; }
+ MailAddress[] Cc { get; set; }
+ MailAddress[] Bcc { get; set; }
MailAddress[] ReplyTo { get; set; }
Dictionary<String, MemoryStream> StreamedAttachments { get; set; }
String[] Attachments { get; set; }
|