summaryrefslogtreecommitdiffstats
path: root/SendGrid/SendGridMail/ISendGrid.cs
diff options
context:
space:
mode:
authorBrandon West <brawest@gmail.com>2014-10-07 14:54:52 -0600
committerBrandon West <brawest@gmail.com>2014-10-07 14:54:52 -0600
commitca91fad22dfec2cd1219267fe979c1d9a33a522e (patch)
tree9c15fbba66ff518d71fa9235bfd6b665c644399d /SendGrid/SendGridMail/ISendGrid.cs
parentc8bbb307de6ab5d571797d2f210a0ec0f5531d3a (diff)
parent35c7bf635ab4b6fb9aeade60f4d4e60c2f2f929b (diff)
downloadsendgrid-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.cs2
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; }