Click here to Skip to main content
15,881,812 members
Articles / Programming Languages / Visual Basic

Sending Mails in .NET Framework

Rate me:
Please Sign up or sign in to vote.
4.69/5 (27 votes)
28 Dec 2010CPL7 min read 203.9K   86   28
Learn how to send mail messages from your C# application via SMTP.

This article is available in my blog too, check it out here.

اقرأ النسخة العربية من هذا الموضوع هنا. 

شاهد شرح فيديو لهذا الموضوع. 

Contents

Contents of this article:

  • Overview
  • Introduction
  • Type Overview
    • System.Net.Mail Types
    • System.Web.Mail Types
  • SMTP Servers
  • Implementation
  • Changing Mail Delivery Method
    • Configuring IIS Default Pickup Directory
    • Programmatically Changing Delivery Method
  • A Sample Application
  • Summary

Overview

This lesson focuses on how to send mail messages in .NET Framework via a SMTP server. It firstly discusses the techniques which .NET Framework provides you to send mail messages. After that, it discusses types available for you when working with SMTP servers. Next, it discusses how to implement these techniques and to send mails from a .NET client.

At the end of this lesson, there is a sample application, Geming Mail+, which is used to send mails from a various SMTP servers. This application is open-source, so you can download its code freely.

Introduction

Simple Mail Transport Protocol or simply SMTP provides a way for applications to connect to the mail server and send mail messages via server’s exposed SMTP service.

Before .NET 2.0, you were to access SMTP via classes in System.Web.Mail namespace which resides in System.Web.dll library. With the release of .NET 2.0, System.Web.Mail classes became deprecated and replaced with classes in System.Net.Mail namespace which exists in System.dll library. That means that you still can use classes of System.Web.Mail, however, you will receive warnings indicate that those classes are deprecated and you should use classes from System.Net.Mail namespace.

Type Overview

System.Net.Mail Types

System.Net.Mail namespace includes many types each of which provides a special feature. In fact, the most time you will not need to use all of them or to know them at all. However, being aware of what .NET provides to you for accessing SMTP is better to help you evolving your SMTP client application in many sides and in various degrees. Here are the most common classes of System.Net.Mail:

  • SmtpClient:One of the essential classes provides you with means of connecting to the SMTP server and sending mail messages. Before starting using this class and send a message, you must initialize server properties like Host, Port, and EnableSsl to allow communicating with the SMTP server. SmtpClient also provides you with some methods like the Send method that sends a specific message synchronously, and SendAsync to send it asynchronously.
  • MailMessage:
    The message to be sent using the SmtpClient class. This class exposes many properties specific to the message like To, CC, Bcc, Subject, and Body properties that corresponds to the message fields.
  • MailAddress:
    Encapsulates a mail address. Provides the DisplayName and Address properties.
  • MailAddressCollection:
    A collection of MailAddress objects. This collection is used inside the MailMessage object in the properties To, CC, and Bcc.
  • Attachment:
    Encapsulates an attached file.
  • AttachmentCollection:
    A collection of Attachment objects. Used in the MailMessage class in its Attachments property.
  • SmtpException:
    Represents an exception thrown from the SmtpClient if it failed to send a message. Use SmtpException’s StatusCode property to determine the error occurred. In addition, see the inner exception for more details.
  • SmtpFailedRecipientException and SmtpFailedRecipientsException:
    Represent exceptions thrown when the SmtpClient fails to send a message to a specific recipient or a group of recipients. Both classes are derived from SmtpException.
  • SmtpPermission and SmtpPermissionAttribute:
    If you are aware of your code running from various locations or from an unsecure environment, you can use these classes to control how your application should access SMTP servers. You use SmtpPermission to control application permissions imperatively. SmtpPermissionAttribute is used to control the permissions declaratively. Consult MSDN documentation for more information about these types and how to use them.

In addition, System.Net.Mail includes various enumerations each represents a set of options for a specific feature. For example, MailPriority enumeration is exposed via the Priority property of a MailMessage object; it can take one of three values, Low, Normal, and High, and it is used to mark your message with a specific priority flag.

System.Web.Mail Types

Besides types in System.Net.Mail, for whose interested in .NET 1.0 and descendent before .NET 2.0, we will cover types of System.Web.Mail briefly. In fact, they are very few types, actually, they are only three classes and three enumerations, and they serve the same as types in System.Net.Mail.

Classes in System.Web.Mail:

  • SmtpMail:
    Serves the same as System.Net.Mail.SmtpClient. However, it exposes only a single property SmtpServer. Plus, it exposes methods for sending mail messages.
  • MailMessage:
    Encapsulates message related information and data like To, CC, BCC, Subject, and Body fields.
  • MailAttachment:
    Encapsulates an attachment. MailMessage exposes a list of MailAttachment objects via its Attachments property.

Besides those only three classes, System.Web.Mail also includes three enumerations, MailEncoding, MailFormat, and MailPriority. I think that those enumerations have expressive names enough and do not need to be explained. If you need some explanation consult MSDN documentation or continue reading this article. Although, this article concentrates on types from System.Net.Mail, they are very similar to the types in System.Web.Mail.

SMTP Servers

In order to connect to a SMTP server you need to be aware of four things:

  • Server address:
    Like smtp.example.com.
  • Port number:
    Usually 25, and sometimes 465. Depends on server’s configuration.
  • SSL:
    You need to know if the server requires a SSL (Secure Socket Layer) connection or not. To be honest, most servers require SSL connections.
  • Credentials:
    You need to know if the server accepts default credentials of the user or requires specific credentials. Credentials are simply the username and password of the user. All e-mail service providers require specific credentials. For example, to connect to your Gmail’s account and send mails via Gmail’s SMTP server, you will need to provide your mail address and password.

The following is a list of some of the major e-mail service providers who provide SMTP services for their clients:

NameServer AddressPortSSL Required?
Livesmtp.live.com25Yes
Gmailsmtp.gmail.com465, 25, or 587 Yes
Yahoo!plus.smtp.mail.yahoo.com465, 25, or 587 Yes
Only for Plus! accounts. Consult Yahoo! documentation for more help about selecting the right port number.
GMXmail.gmx.com25No

Implementation

The following is a simple code segment uses classes from System.Net.Mail namespace to send mail messages via GMail's SMTP server. 

Do not forget to add a using statement (Imports in VB.NET) for the System.Net.Mail namespace.

C#
 // C# Code

MailMessage msg = new MailMessage();

// Your mail address and display name.
// This what will appear on the From field.
// If you used another credentials to access
// the SMTP server, the mail message would be
// sent from the mail specified in the From
// field on behalf of the real sender.
msg.From =
    new MailAddress("example@gmail.com", "Example");

// To addresses
msg.To.Add("friend_a@example.com");
msg.To.Add(new MailAddress("friend_b@example.com", "Friend B"));

// You can specify CC and BCC addresses also

// Set to high priority
msg.Priority = MailPriority.High;

msg.Subject = "Hey, a fabulous site!";

// You can specify a plain text or HTML contents
msg.Body =
    "Hello everybody,<br /><br />" +
    "I found an interesting site called <a href=\"http://JustLikeAMagic.WordPress.com">" +
    "Just Like a Magic</a>. Be sure to visit it soon.";
// In order for the mail client to interpret message
// body correctly, we mark the body as HTML
// because we set the body to HTML contents.
msg.IsBodyHtml = true;

// Attaching some data
msg.Attachments.Add(new Attachment("C:\\Site.lnk"));

// Connecting to the server and configuring it
SmtpClient client = new SmtpClient();
client.Host = "smtp.gmail.com";
client.Port = 578;
client.EnableSsl = true;
// The server requires user's credentials
// not the default credentials
client.UseDefaultCredentials = false;
// Provide your credentials
client.Credentials = new System.Net.NetworkCredential("example@GMX.com", "buzzwrd");
client.DeliveryMethod = SmtpDeliveryMethod.Network;

// Use SendAsync to send the message asynchronously
client.Send(msg);
VB.NET
' VB.NET Code

Dim msg As New MailMessage()

' Your mail address and display name.
' This what will appear on the From field.
' If you used another credentials to access
' the SMTP server, the mail message would be
' sent from the mail specified in the From
' field on behalf of the real sender.
msg.From = _
    New MailAddress("example@gmail.com", "Example")

' To addresses
msg.To.Add("friend_a@example.com")
msg.To.Add(New MailAddress("friend_b@example.com", "Friend B"))

' You can specify CC and BCC addresses also

' Set to high priority
msg.Priority = MailPriority.High

msg.Subject = "Hey, a fabulous site!"

' You can specify a plain text or HTML contents
msg.Body = _
    "Hello everybody,<br /><br />" & _
    "I found an interesting site called <a href=""http:'JustLikeAMagic.WordPress.com"">" & _
    "Just Like a Magic</a>. Be sure to visit it soon."
' In order for the mail client to interpret message
' body correctly, we mark the body as HTML
' because we set the body to HTML contents.
msg.IsBodyHtml = True

' Attaching some data
msg.Attachments.Add(New Attachment("D:\Site.lnk"))

' Connecting to the server and configuring it
Dim client As New SmtpClient()
client.Host = "smtp.gmail.com"
client.Port = 578
client.EnableSsl = True
' The server requires user's credentials
' not the default credentials
client.UseDefaultCredentials = False
' Provide your credentials
client.Credentials = New System.Net.NetworkCredential("example@gmail.com", "buzzwrd")
client.DeliveryMethod = SmtpDeliveryMethod.Network


' Use SendAsync to send the message asynchronously
client.Send(msg)

Changing Mail Delivery Method

You can specify that messages sent do not go to the SMTP server. Instead, it is sent to a directory in your computer that you specify. Actually, it is a good idea when it comes to testing your application. Thus, decreases the testing time.

SmtpClient supports two properties for changing mail delivery location; they are DeliveryMethod and PickupDirectoryLocation properties. DeliveryMethod specifies the delivery method that would be taken when sending the message. This property is of type SmtpDeliveryMethod enumeration; therefore, it can be set to one of three values:

  • Network: (default)
    The message is sent via the network to the SMTP server.
  • PickupDirectoryFromIis:
    The message is copied to the mail default directory of the Internet Information Services (IIS).
  • SpecifiedPickupDirectory:
    The message is copied to the directory specified by the property PickupDirectoryLocation.

Configuring IIS Default Pickup Directory

To change the IIS default pickup directory in IIS 7 follow the following steps:

  1. Start Internet Information Services (IIS) 7 Manager.
  2. From the Home view, select SMTP E-mail item. Figure 1 shows the SMTP E-mail item in the IIS 7 MMC snap-in.

    Figure 1 - Selecting SMTP E-mail Item in IIS 7

    Figure 1 - Selecting SMTP E-mail Item in IIS 7
  3. From the SMTP E-mail configuration view, change the default pickup directory by choosing the option “Store e-mail in pickup directory” and selecting your desired directory using the Browse button. Figure 2 shows the SMTP E-mail view while changing pickup directory options.

    Figure 2 - Configuring SMTP E-mail Pickup Directory

    Figure 2 - Configuring SMTP E-mail Pickup Directory
  4. From the right pane, click Apply to save your current settings.

Programmatically Changing Delivery Method

The following lines change the delivery location to a specific location in the drive C. You can add the following lines before the line that calls Send() method of the SmtpClient.

In order for the example to run correctly, the specified directory must be existed or you will receive an exception when executing the Send() method.

C#
// C# Code
client.DeliveryMethod = SmtpDeliveryMethod.SpecifiedPickupDirectory;
client.PickupDirectoryLocation = "C:\\mails";
VB.NET
' VB.NET Code
client.DeliveryMethod = SmtpDeliveryMethod.SpecifiedPickupDirectory
client.PickupDirectoryLocation = "C:\mails"

A Sample Application

Geming Mail+ is an application that is used to send mails via extendable variety of SMTP servers. This application created using .NET 2.0 and Visual Studio 2008. The following are snapshots of the application:

Geming Mail+ SplashGeming Mail+

Summary 

This lesson was a great introduction to e-mail programming in .NET Framework. You learned how to send mails via a SMTP server. Soon we will cover how to receive mails in .NET Framework.

Have a nice day… 

License

This article, along with any associated source code and files, is licensed under The Common Public License Version 1.0 (CPL)


Written By
Technical Lead
Egypt Egypt
Mohammad Elsheimy is a developer, trainer, and technical writer currently hired by one of the leading fintech companies in Middle East, as a technical lead.

Mohammad is a MCP, MCTS, MCPD, MCSA, MCSE, and MCT expertized in Microsoft technologies, data management, analytics, Azure and DevOps solutions. He is also a Project Management Professional (PMP) and a Quranic Readings college (Al-Azhar) graduate specialized in Quranic readings, Islamic legislation, and the Arabic language.

Mohammad was born in Egypt. He loves his machine and his code more than anything else!

Currently, Mohammad runs two blogs: "Just Like [a] Magic" (http://JustLikeAMagic.com) and "مع الدوت نت" (http://WithdDotNet.net), both dedicated for programming and Microsoft technologies.

You can reach Mohammad at elsheimy[at]live[dot]com

Comments and Discussions

 
QuestionPlease provide source and sample as zip files Pin
SBendBuckeye25-Aug-14 21:42
SBendBuckeye25-Aug-14 21:42 
QuestionChange the Trust Level Pin
Member 1076999725-Apr-14 4:04
Member 1076999725-Apr-14 4:04 
QuestionSMTP use Proxy connection Pin
a_quu_a24-Oct-12 16:57
a_quu_a24-Oct-12 16:57 
GeneralMy vote of 5 Pin
Alaa S. Al Agamawi8-May-12 8:28
Alaa S. Al Agamawi8-May-12 8:28 
QuestionVerifying email addresses Pin
MikeAngel8-Mar-12 8:22
MikeAngel8-Mar-12 8:22 
QuestionSending email with attachment from Windows Froms C# application Pin
madeleindt21-Feb-12 23:58
madeleindt21-Feb-12 23:58 
QuestionGood Pin
Abhishek Sur9-Oct-11 9:10
professionalAbhishek Sur9-Oct-11 9:10 
QuestionHow to track bounced emails Pin
sathishmarappan126-Jan-11 23:28
sathishmarappan126-Jan-11 23:28 
AnswerRe: How to track bounced emails Pin
Pardeep singh from Chandigarh9-Dec-11 19:28
Pardeep singh from Chandigarh9-Dec-11 19:28 
GeneralMy vote of 5 Pin
JH644-Jan-11 8:06
JH644-Jan-11 8:06 
General[My vote of 1] Download Freezes at 58.8 kb ~ 62 kb Pin
owltiger30-Jun-10 9:36
owltiger30-Jun-10 9:36 
GeneralRe: [My vote of 1] Download Freezes at 58.8 kb ~ 62 kb Pin
Mohammad Elsheimy1-Jul-10 11:04
Mohammad Elsheimy1-Jul-10 11:04 
QuestionProxy Servers Pin
llgsadmin15-Jun-10 1:45
llgsadmin15-Jun-10 1:45 
AnswerRe: Proxy Servers Pin
Mohammad Elsheimy1-Jul-10 11:02
Mohammad Elsheimy1-Jul-10 11:02 
GeneralMy vote of 2 Pin
DLChambers25-May-10 10:54
DLChambers25-May-10 10:54 
GeneralRe: My vote of 2 Pin
Mohammad Elsheimy25-May-10 11:00
Mohammad Elsheimy25-May-10 11:00 
GeneralDownload is an MSI - Boo! Pin
DLChambers25-May-10 10:53
DLChambers25-May-10 10:53 
GeneralRe: Download is an MSI - Boo! Pin
Mohammad Elsheimy25-May-10 10:58
Mohammad Elsheimy25-May-10 10:58 
General[My vote of 2] Seems so familiar Pin
Deezos18-May-10 1:48
Deezos18-May-10 1:48 
GeneralRe: [My vote of 2] Seems so familiar Pin
Mohammad Elsheimy18-May-10 11:18
Mohammad Elsheimy18-May-10 11:18 
GeneralOpenPop.net ported to vb Pin
charles henington11-May-10 4:44
charles henington11-May-10 4:44 
GeneralM Vote of 1 Pin
charles henington10-May-10 15:24
charles henington10-May-10 15:24 
GeneralRe: M Vote of 1 Pin
Mohammad Elsheimy11-May-10 1:39
Mohammad Elsheimy11-May-10 1:39 
GeneralRe: M Vote of 1 Pin
charles henington11-May-10 4:41
charles henington11-May-10 4:41 
GeneralRe: M Vote of 1 Pin
Mohammad Elsheimy18-May-10 11:21
Mohammad Elsheimy18-May-10 11:21 

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.