Click here to Skip to main content
15,885,078 members
Articles / Programming Languages / C#
Article

Creating In-Memory Mail Attachments

Rate me:
Please Sign up or sign in to vote.
4.02/5 (20 votes)
24 Nov 2007CPOL2 min read 119.9K   1.9K   44   14
This article shows how to create mail attachments during runtime without creating files on the file system.
Screenshot - InMemoryMailAttachment.gif

Introduction

Recently I wrote a background service which monitors a database and sends emails about the status. Each email has an attached XML file, which is used to automatically process the emails at the receiver's side. I looked for an example on how to create such attachments without first creating files in the file system. There are a lot of examples on how to attach existing files to an email, but none showed how to create attachments in-memory.

For demonstration purposes, I wrote a small windows application which is able to send an email with an attachment. I hope this small example can help some people struggling with the same problem.

Understanding the Code

I put all the code into the click event handler of the "Send" button in the SenderForm class. In real production code, I would have separated the concerns into different classes, especially to be able to test the behavior with unit tests. The code uses the .NET Framework class SmtpClient and MailMessage to send emails. There are already a lot of articles on how to initialize the SmtpClient, how to perform the SMTP authentication and how to create a MailMessage, so I will not cover this part in detail.

C#
// Init the smtp client and set the network credentials
SmtpClient smtpClient = new SmtpClient();
smtpClient.Host = hostTextBox.Text;
...
    
// Create MailMessage
MailMessage message = new MailMessage(
    fromTextBox.Text,
    toTextBox.Text,
    subjectTextBox.Text,
    bodyTextBox.Text);

The interesting part is the creation of the attachment. The file content string should be placed inside the attachment. First you have to convert the string into an array of bytes. These bytes must be written into a memory stream. Do not forget to set the position pointer in the stream back to the beginning before you use the stream. You have to define the MIME type and the file name with a ContentType object. Now you can create an Attachment object. Adding this attachment to the email and sending it is easy:

C#
// Create a memory stream
using (MemoryStream memoryStream = new MemoryStream())
{
    byte[] contentAsBytes = Encoding.UTF8.GetBytes(fileContentTextBox.Text);
    memoryStream.Write(contentAsBytes, 0, contentAsBytes.Length);

    // Set the position to the beginning of the stream.
    memoryStream.Seek(0, SeekOrigin.Begin);

    // Create attachment
    ContentType contentType = new ContentType();
    contentType.MediaType = MediaTypeNames.Application.Octet;
    contentType.Name = fileNameTextBox.Text;
    Attachment attachment = new Attachment(memoryStream, contentType);

    // Add the attachment
    message.Attachments.Add(attachment);

    // Send Mail via SmtpClient
    smtpClient.Send(message);
}

Points of Interest

The use of streams and the encoding and decoding of strings is solved very nicely by the creators of the .NET Framework. Nevertheless, someone not concerned with these issues everyday may need some examples to get productive quickly. I hope this article may help a little bit.

History

  • 24th November, 2007: Initial version posted
  • 3rd December, 2007: Disposing the memory stream with a using statement

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader
Germany Germany
Sven worked as Software Developer, System Architect, Project Manager and Team Leader. He is working for more than 15 years in the software industry.

http://www.svengrand.blogspot.com/

Comments and Discussions

 
QuestionThanks!! Oct 2021 and this solves my problem!! Love it! Pin
Member 138258761-Oct-21 2:44
Member 138258761-Oct-21 2:44 
QuestionAgain, and still, a life saver Pin
James McCullough4-Mar-19 7:44
professionalJames McCullough4-Mar-19 7:44 
QuestionEven today a life Saver Pin
Phoenix2k117-Sep-12 8:35
Phoenix2k117-Sep-12 8:35 
Questionnice Pin
BillW3319-Apr-12 7:09
professionalBillW3319-Apr-12 7:09 
QuestionBrilliant Pin
Member 475455511-Apr-12 16:37
Member 475455511-Apr-12 16:37 
I couldn't get the attachment to show greater than a couple of hundred bytes and then I saw your explanation of needing to rewind the memory stream before attaching - that did the trick. Thanks!
GeneralDanke! Pin
xmanuw5-Oct-09 4:21
xmanuw5-Oct-09 4:21 
GeneralUse the CreateAttachmentFromString() method to create an attachment Pin
jussieu00724-Feb-09 23:41
jussieu00724-Feb-09 23:41 
GeneralRe: Use the CreateAttachmentFromString() method to create an attachment Pin
Sven Grand13-Mar-09 11:15
Sven Grand13-Mar-09 11:15 
GeneralGreat Article... Pin
Joshua Clark9-May-08 8:28
Joshua Clark9-May-08 8:28 
GeneralVery Usefull Pin
Dhawal Mehta30-Mar-08 23:59
Dhawal Mehta30-Mar-08 23:59 
GeneralGreat article Pin
stylonurus20-Feb-08 8:22
stylonurus20-Feb-08 8:22 
GeneralNice solution when permissions cant be granted Pin
Rick Hansen10-Dec-07 5:53
Rick Hansen10-Dec-07 5:53 
GeneralDispose! Pin
Steven Berkovitz26-Nov-07 13:41
Steven Berkovitz26-Nov-07 13:41 
AnswerRe: Dispose! Pin
Sven Grand27-Nov-07 8:56
Sven Grand27-Nov-07 8:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.