diff options
author | Brandon West <brawest@gmail.com> | 2013-10-24 14:18:18 -0600 |
---|---|---|
committer | Brandon West <brawest@gmail.com> | 2013-10-24 14:18:18 -0600 |
commit | eeb88eff432ba4e9e4c9c8cc1e9cf303ad472587 (patch) | |
tree | 1f12388430589f2dd5d71397ae357a5902864abe | |
parent | c6d9c9c2c5f0e351659bc3550e391494dd2dc118 (diff) | |
download | sendgrid-csharp-eeb88eff432ba4e9e4c9c8cc1e9cf303ad472587.zip sendgrid-csharp-eeb88eff432ba4e9e4c9c8cc1e9cf303ad472587.tar.gz sendgrid-csharp-eeb88eff432ba4e9e4c9c8cc1e9cf303ad472587.tar.bz2 |
normalize line endings
-rw-r--r--[-rwxr-xr-x] | SendGrid/SendGridMail/SendGrid.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SendGrid/SendGridMail/SendGrid.cs b/SendGrid/SendGridMail/SendGrid.cs index f7901c1..44225db 100755..100644 --- a/SendGrid/SendGridMail/SendGrid.cs +++ b/SendGrid/SendGridMail/SendGrid.cs @@ -310,7 +310,7 @@ namespace SendGridMail {
Header.SetCategories(categories);
}
- +
public void AddAttachment(Stream stream, String name)
{
MemoryStream ms = new MemoryStream();
@@ -318,7 +318,7 @@ namespace SendGridMail ms.Seek(0,SeekOrigin.Begin);
StreamedAttachments[name] = ms;
}
- +
public void AddAttachment(String filePath)
{
_attachments.Add(filePath);
|