diff options
Diffstat (limited to 'SendGrid/SendGridMail/ISendGrid.cs')
-rwxr-xr-x | SendGrid/SendGridMail/ISendGrid.cs | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/SendGrid/SendGridMail/ISendGrid.cs b/SendGrid/SendGridMail/ISendGrid.cs index 81952d3..a292edc 100755 --- a/SendGrid/SendGridMail/ISendGrid.cs +++ b/SendGrid/SendGridMail/ISendGrid.cs @@ -31,7 +31,7 @@ namespace SendGridMail MailAddress[] Cc { get; }
MailAddress[] Bcc { get; }
MailAddress[] ReplyTo { get; set; }
- Attachment[] Attachments { get; set; }
+ String[] Attachments { get; set; }
String Subject { get; set; }
Dictionary<String, String> Headers { get; set; }
IHeader Header { get; set; }
@@ -120,20 +120,6 @@ namespace SendGridMail /// </summary>
/// <param name="filePath"></param>
void AddAttachment(String filePath);
- /// <summary>
- /// Add an attachment to the message
- /// The 'attachment' paramater expects an argument of the Attachment type.
- /// </summary>
- /// <param name="attachment"></param>
- void AddAttachment(Attachment attachment);
- /// <summary>
- /// Add an attachment to the message
- /// The 'attachment' paramater expects an argument of the Attachment type.
- /// The 'type' parameter expects an argument of the ContentType type.
- /// </summary>
- /// <param name="attachment"></param>
- /// <param name="type"></param>
- void AddAttachment(Stream attachment, ContentType type);
/// <summary>
/// GetRecipients returns a list of all the recepients by retrieving the to, cc, and bcc lists.
|