diff options
author | Josh Huber <josh.huber@pdp.com> | 2014-08-15 18:30:16 -0700 |
---|---|---|
committer | Josh Huber <josh.huber@pdp.com> | 2014-08-15 18:30:16 -0700 |
commit | 35c7bf635ab4b6fb9aeade60f4d4e60c2f2f929b (patch) | |
tree | 72e18dfd34e8cf50d89caa7a7122fe5098926dd6 /SendGrid/SendGridMail/ISendGrid.cs | |
parent | 64e62585587bd9c2ef59c6c03f97af67c550b560 (diff) | |
download | sendgrid-csharp-35c7bf635ab4b6fb9aeade60f4d4e60c2f2f929b.zip sendgrid-csharp-35c7bf635ab4b6fb9aeade60f4d4e60c2f2f929b.tar.gz sendgrid-csharp-35c7bf635ab4b6fb9aeade60f4d4e60c2f2f929b.tar.bz2 |
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; }
|