SendGrid.Net.Mail.Attachment.CreateAttachmentFromString C# (CSharp) Method

CreateAttachmentFromString() public static method

public static CreateAttachmentFromString ( string content, string name ) : Attachment
content string
name string
return Attachment
        public static Attachment CreateAttachmentFromString(string content, string name)
        {
            if (content == null)
                throw new ArgumentNullException("content");
            MemoryStream ms = new MemoryStream();
            StreamWriter sw = new StreamWriter(ms);
            sw.Write(content);
            sw.Flush();
            ms.Position = 0;
            Attachment a = new Attachment(ms, new ContentType("text/plain"));
            a.TransferEncoding = TransferEncoding.QuotedPrintable;
            a.Name = name;
            return a;
        }

Same methods

Attachment::CreateAttachmentFromString ( string content, ContentType contentType ) : Attachment
Attachment::CreateAttachmentFromString ( string content, string name, Encoding contentEncoding, string mediaType ) : Attachment