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

CreateAttachmentFromString() public static method

public static CreateAttachmentFromString ( string content, ContentType contentType ) : Attachment
content string
contentType SendGrid.Net.Mime.ContentType
return Attachment
        public static Attachment CreateAttachmentFromString(string content, ContentType contentType)
        {
            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, contentType);
            a.TransferEncoding = TransferEncoding.QuotedPrintable;
            return a;
        }

Same methods

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