Creating and Setting Contents of Emails in .NET

Create New Email Message

The MailMessage class represents an email message and allows developers to create a new email message. Basic email properties like From, To, Subject and body can be easily attached to the newly created mail message. Similarly, we can save the mail message into different formats like EML, MSG, and MHTML.

Steps: Create New Email:

Code Steps:

  1. Create an instance of the MailMessage class.
  2. Set mail message properties.
  3. Save the mail message in different formats e.g.
    1. EML using SaveOptions.DefaultEml
    2. EmlxFormat (Apple Email) using CreateSaveOptions method.
    3. MSG Unicode using SaveOptions.DefaultMsgUnicode
    4. MHTML using SaveOptions.DefaultMhtml

The following code snippet shows you how to create a new email with different properties.

Specifying Multiple Recipients

The MailMessage represents an email message. Instances of the MailMessage class are used to construct email messages that are transmitted to an SMTP server using the SmtpClient class. This topic demonstrates how to specify more than one email address. Email addresses can be specified using the MailMessage class. The email addresses used in the MailMessage class are:

  • To - Recipient addresses can be specified in the ‘To’ field. The ‘To’ field recipients are the primary message audience. There can be more than one recipient address
  • Cc - Cc stands for “carbon copy”, or “courtesy copy”, and lets you add email recipients who need to see the email but who are not necessarily expected to act on it. Managers, for example, or members of your team who need to be aware of a conversation. With Aspose.Email, Cc addresses can be specified in your code. This way, automated emails, or all emails to a specific address, can be copied to relevant personnel.
  • Bcc -  Where a Cc appears in the email information that the main recipients see, a Bcc doesn’t. It is meant for hidden notification.

To specify multiple email addresses in an email message, follow these steps:

Steps: Specify Multiple Recipients of Email using C# | Steps: Send Email to Multiple Recipients in C#

  1. Create an instance of the MailMessage class.
  2. Specify the From and multiple To, Cc and Bcc addresses using the MailMessage instance.
  3. Create an instance of the SmtpClient class and send the email using the Send method.

The code sample below shows how multiple To, Cc, and Bcc addresses can be specified.

Changing email addresses to a friendly name

The programming samples below demonstrate how to change email addresses to friendly names in an email message. A friendly name is a name that is more human-friendly than the email address, for example John Smith instead of js346@domain.com. When sending an email, we can associate a friendly name with an email address in the MailMessage class constructor.

To change email addresses to friendly names in an email message, follow these steps:

Steps: Change Email Addresses to Friendly Names in C# | Steps: Send Email after Changing Email Addresses to Friendly Names in C#

  1. Create an instance of the MailMessage class and specify email addresses in the To and From fields along with friendly names.
  2. Specify the Cc and Bcc email addresses along with friendly names by calling the MailMessage class constructor in the MailMessage instance.
  3. Create an instance of the SmtpClient class and send the email using the Send method.

The following code snippet shows you how to display Names for email addresses.

Set Mail Body

The MailMessage class represents an email message. Instances of the MailMessage class are used to construct email messages that are transmitted to an SMTP server for delivery using the SmtpClient class. A mail body can be specified using the Body and HtmlBody properties of the MailMessage class. The MailMessage class also allows you to add alternate views to the email.

This article shows how to add body and alternate views to the email.

Setting HTML Body

HtmlBody is used to specify the HTML content of a message body. HtmlBody must be enclosed between tags. The following code snippet shows you how to set HTML body.

Steps: Set Email HTML Body in C#

  1. Create an instance of MailMessage class.
  2. Set email HTML body using MailMessage.HtmlBody property.

Setting Alternate Text

Use the AlternateView class to specify copies of an email message in different formats. For example, if you send a message in HTML, you might also want to provide a plain text version in case some of the recipients use email readers that cannot display HTML content. This class has two properties, LinkedResources and BaseUri, which are used to resolve URLs within the content of the email.

  • LinkedResources is a collection of LinkedResource objects. When rendered, URLs within the email’s content are first matched against the URLs in the Content Link of each LinkedResource object in the LinkedResources collection and resolved.
  • BaseUri is used by the mail reader to resolve relative URLs within the body, and also to resolve relative Content Link URLs, in the LinkedResources collection.

The following code snippet shows you how to set alternate text.

Steps: Set Email Alternate Text in C#

  1. Create an instance of MailMessage class.
  2. Create AlternateView to view an email message using the content specified in the string.
  3. Add alternate text using Add method of MailMessage.AlternateViews collection.

Specifying Mail Body Encoding

The content type defines the email content format: the character set, for example. The encoding formats provided in System.Text.Encoding are:

  • ASCII: Encoding for the ASCII (7 bit) character set.
  • Default: Encoding for the system’s current ANSI code page.
  • Unicode: Encoding for the Unicode format in little-endian byte order.
  • BigEndianUnicode: Encoding for the Unicode format in the big-endian byte order.
  • UTF7: Encoding for the UTF-7 format.
  • UTF8: Encoding for the UTF-8 format.

Aspose.Email uses the BodyEncoding property of the MailMessage class to specify the email body encoding. To encode the body of an email message, follow the steps given below:

Steps: Specifying Mail Body Encoding

Code Steps:

  1. Create an instance of the MailMessage class.
  2. Specify the sender, receiver and HTML body email in the MailMessage instance.
  3. Specify the BodyEncoding property value.
  4. Create an instance of the SmtpClient class and send the email using the Send method.

MailMessage Features

The MailMessage class represents the content of an email message. Instances of the MailMessage class are used to construct an email message that is transmitted to an SMTP server for delivery using the SmtpClient class. This article shows how to use MailMessage class utility features for controlling the following email features:

  • Date and time - Through the MailMessage class Date property we get or set an email’s date and time.
  • Message priority - The MailPriority class specifies priority levels for sending an email message. It can be low, normal or high. Priority influences transmission speed and delivery.
  • Message sensitivity - The MailSensitivity class specifies five levels of sensitivity.
  • Delivery notification - Delivery notifications let senders know that the email they sent has been delivered to the recipient’s inbox.

By default, the date is the actual date that the message was sent, and time is the time it was sent, as displayed by Microsoft Outlook. However, the real email delivery time is added by the SMTP server itself in the mail header. For example, below is a common mail header, where Date sets the field Date.

The code snippet below illustrates how each of the features discussed above can be used.

Requesting a Read Receipt

The programming samples below show how you can request a read receipt. The MailMessage class DeliveryNotificationOptions Enumeration property describes the delivery notification options for an email. To request a read receipt after sending an email, follow these steps:

  1. Create an instance of the MailMessage class.
  2. Specify the sender, receiver and HTML body for the email in the MailMessage instance.
  3. Specify the DeliveryNotificationOptions in other MailMessage instances.
  4. Create an instance of the SmtpClient class and send the email using the Send method.

Read receipt requests may not be always honored because:

  • A mail client may not implement that functionality.
  • The end-user may have that functionality turned off.
  • The end-user may choose not to send one.

The following code snippet shows you how to request a read receipt.

Set Email Headers

Email headers represent an Internet standard and RFC define header fields which are included in Internet email messages. An email header can be specified using the MailMessage class. Common header types are defined in the HeaderType class. It is a sealed class working as a normal enumeration.

Normally an email header contains these fields:

  • To: Recipient addresses can be specified in the To field. The To field recipients are the message’s primary audience. There can be more than one recipient addresses.
  • From: This field presents the email address of the message sender.
  • Cc: Allows users to send a message as a “Carbon Copy” or “Courtesy Copy”. That is, the receiver is not expected to reply or act. Typically, supervisory personnel are notified with CC.
  • Bcc: It stands for Blind Carbon Copy, which lets you send an email to a recipient that is hidden from other recipients.
  • ReplyTo: This header field is meant to indicate where the sender wants replies to go.
  • Subject: Title, heading, subject. Often used as a thread indicator for messages replying to or commenting on other messages.
  • Date: This header specifies a date (and time). Normally this is the date at which the message was composed and sent.
  • XMailer: Information about the client software of the originator. Example: X-Mailer: Aspose.Email XMailer is used by mail clients. Different mail clients will have different XMailer values. MS Outlook’s XMailer value is Microsoft Office Outlook, Build 11.0.5510. It is ignored by the email receiver or email reader.

Normally, an email header looks something like this:


 Reply-To: reply@reply.com

From: sender@sender.com

To: guangzhou@guangzhoo.com

Subject: test mail

Date: 6 Mar 2006 8:2:2 +0800

X-Mailer: Aspose.Email

To customize an email header, follow these steps:

  • Create an instance of the MailMessage class.
  • Specify To, From, Cc, Bcc, ReplyTo, Subject, Date & XMailer using an instance of the MailMessage.
  • Create an instance of the MimeHeader class and specify the secret header.
  • Add the secret header to the MailMessage instance.

The following code snippet shows you how to set email headers.

The above code snippet produces an email header in the following format. This can be observed by opening the resultant file “MsgHeaders.msg” in Microsoft Outlook and then view the Properties.


 Reply-To: reply@reply.com

From: sender@sender.com

To: receiver1@receiver.com

CC: receiver2@receiver.com

BCC: receiver3@receiver.com

Subject: test mail

Date: 6 Mar 2006 8:2:2 +0800

X-Mailer: Aspose.Email

secret-header: mystery

Insert Header at Specific Location

The Add method of HeadersCollection class inserts the header at the end of the collection. However, it may sometimes be necessary to insert a header at a specific location. In such a case, the Add method won’t be of help. To achieve this, use the Insert method of the HeadersCollection. If the collection contains headers with the same name, this header will be inserted before other headers with the same name. The following code snippet shows you how to insert header at a specific location.

Adding Custom headers to email

The programming sample below demonstrates how to specify a custom header in an email message. An email header can be specified using the MailMessage class. To specify a custom header in an email message, please follow these steps:

  1. Create an instance of the MailMessage class.
  2. Specify the to, from and subject values using the MailMessage instance.
  3. Add the secret header into the MailMessage instance.
  4. Create an instance of the SmtpClient class and send the email using the Send method.

The following code snippet shows you how to add custom headers to email.

Sign Emails with DKIM

Aspose.Email allows signing Email with DKIM (DomainKeys Identified Mail). This lets an organization take responsibility for a message that is in transit (More Info). DKIM adds a digital signature to the email message headers that can be validated by recipients. The public key of the sender enables the receiver to verify that the signature matches the message’s contents. The DKIMSign method of the MailMessage class is used to set the cryptographic and signature information for signing the message. The following code snippet shows you how to sign emails with DKIM.

See Also

This article also covers these topics. The codes are same as above.

Category: Email Body Encoding

Category: Send Email