5,426,531 members and growing! (14,598 online)
Email Password   helpLost your password?
General Programming » Internet / Network » Email     Intermediate

Windows Email Client application using .NET (C#)

By Fabian Tang

An article on a Windows email client application using .NET.
C#, Windows, .NET 1.1, .NETVisual Studio, VS.NET2003, Dev

Posted: 21 Dec 2005
Updated: 21 Dec 2005
Views: 47,118
Bookmarked: 25 times
Announcements
Want a new Job?



Search    
Advanced Search
Sitemap
11 votes for this Article.
Popularity: 3.52 Rating: 3.38 out of 5
3 votes, 27.3%
1
1 vote, 9.1%
2
0 votes, 0.0%
3
4 votes, 36.4%
4
3 votes, 27.3%
5

Sample Image

Sample Image

Introduction

This article is to show the reader how easy it is to send an email using the .NET framework. Not only can the user determine the format of the email (HTML or text), non-ASCII characters can also be sent with relatively simple coding. A Windows email client application along with the source code can be found in this article.

Configuring a PC to use the application

Some configuration needs to be done before you can make use of the application.

  1. IIS needs to be installed. You can install it by clicking the Internet Information Service check box in ‘Control Panel’->‘Add/Remove Windows Components’. Also, make sure the SMTP Service check box is checked in the IIS details.
  2. In Administrative tools -> Internet Information Services, right click on 'SMTP Virtual Server' and select Properties in the context menu. Make sure the IP address points to the local host (127.0.0.1) or is set to (Unassigned).

    Sample Image

  3. Under the Access tab, click on the Relay button and check on the box “All except the list below”.

    Sample Image

  4. Under the Message tab, you will find the directory where all the bad mails are stored.

    Sample Image

Using the code

In order to make use of the mail services from .NET, you need to have a reference to System.Web in your solution explorer. This reference is added to the ASP.NET application by default but is not present when you create a Windows application.

First, you need to create a MailMessage object:

MailMessage mm = new MailMessage();

Next, you need to set the members of the MailMessage object you created:

//Setting the fields of the emails

mm.To = toText.Text;
mm.From = fromText.Text;
mm.Cc = ccText.Text;
mm.Bcc = bccText.Text;
mm.Subject = subjectText.Text;

//The body of the message text

mm.Body = messageText.Text;

//The Priority of the mail

switch (settingDialog.PrEnum)
{
    case Priorities.High:
        mm.Priority = MailPriority.High;
        break;
    case Priorities.Normal:
        mm.Priority = MailPriority.Normal;
        break;
    case Priorities.Low:
        mm.Priority = MailPriority.Low;
        break;
    default:
        break;
}

//The encoding format of the mail

switch (settingDialog.EdEnum)
{
    case Encodings.ASCII:
        mm.BodyEncoding =Encoding.ASCII;
        break;
    case Encodings.Unicode:
        mm.BodyEncoding =Encoding.Unicode;
        break;
    case Encodings.UTF7:
        mm.BodyEncoding =Encoding.UTF7;
        break;
    case Encodings.UTF8:
        mm.BodyEncoding =Encoding.UTF8;
        break;
    default:
        break;
}

//Format of mail is in HTML format

mm.BodyFormat = MailFormat.Html;

if (!attachText.Text.Equals("")) 
{
    //adding attachments. 

    //You can add multiple attachments if you want

    MailAttachment ma = new MailAttachment(attachText.Text);
    if (ma != null) 
    {
        mm.Attachments.Add(ma);
    }
}

To send the mail, make use of the Send method:

SmtpMail.Send(mm);

As you can see, to send a mail with .NET is really that simple.

Known Issues

  1. When I set the priority to high, Outlook Express still shows it as a normal priority mail.

    This is a known issue with .NET. The priority will work with Microsoft Outlook but not with Outlook Express.

Troubleshooting

  1. An exception is thrown: "Could not access 'CDO.Message' object'"

    Make sure you follow point #2 in the section “Configuring the PC” above.

  2. Mail cannot be sent.

    Make sure you are not behind any firewall that disrupts the sending of the mail. Make sure your port 25 is not blocked. You can check if there are any bad mails or mails under queue in your mailroot directory. Usually, this folder can be found in “C:\Inetpub\mailroot”.

  3. After disabling the firewall, my email still failed to be sent.

    Make sure there isn’t any mail under the queue in your mailroot directory. You may also want to make sure that the string in “SmtpMail.SmtpServer” is referring to the localhost.

  4. Email sent with Unicode encoding cannot be received.

    You may want to use UTF8 encoding instead. Check if the email is being stored in the queue folder in your mailroot directory. You may want to open the .eml attachment to see if the Unicode message is being encoded correctly.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Fabian Tang



Location: Singapore Singapore

Other popular Internet / Network articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 7 of 7 (Total in Forum: 7) (Refresh)FirstPrevNext
Subject  Author Date 
GeneralRegrding Anonmymous mail demomemberrajkumari0:57 10 Jun '08  
General[COMException (0x80040213): The transport failed to connect to the server.memberPaul's7:58 19 Nov '07  
Generalproblem in using "http://www.codeproject.com/cs/internet/WinEmailClient.asp"memberEEmaan21:29 30 Jan '07  
GeneralSecurity Risks R UsmemberRich Bryant4:45 22 Dec '05  
GeneralRe: Security Risks R UsmemberVertyg010:19 22 Dec '05  
GeneralRe: Security Risks R Usmembermiguelguzman3:34 27 Dec '05  
GeneralRe: Security Risks R UsmemberMufaka15:09 27 Dec '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 21 Dec 2005
Editor: Smitha Vijayan
Copyright 2005 by Fabian Tang
Everything else Copyright © CodeProject, 1999-2008
Web17 | Advertise on the Code Project