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

Sending Mail Using C# via SMTP

Rate me:
Please Sign up or sign in to vote.
3.65/5 (36 votes)
19 Dec 2001 511.2K   16.7K   94   57
A simple application for sending mail via SMTP server using C#

Introduction

This project shows how to send mail via an SMTP server using C#.

How to Send Mail via SMTP

Based on RFC 821 about Simple Mail Transfer Protocol, it's very easy to send mail via SMTP. Here's the handshaking for sending mail:

Receiver: 220 server.com Simple Mail Transfer Service Ready
Sender  : HELO server.com
Receiver: 250 server.com
Sender  : MAIL FROM: <agusk@host.com>
Receiver: 250 OK
Sender  : RCPT TO: <myhoney@host.com>
Receiver: 250 OK
Sender  : DATA
Receiver: 354 Start mail input: end with <CRLF>.<CRLF>
Sender  : all data like From, To, Subject, Body etc.
          ended with <CRLF>.<CRLF>
Receiver: 250 OK
Sender  : QUIT
Receiver: 250 server.com closing transmission channel

Building the Application Using C#

Here's a model of the GUI:

add these code lines for when the use clicks the Send button:

C#
 private void SendBtn_Click(object sender, System.EventArgs e)
{
    // change cursor into wait cursor
    Cursor cr = Cursor.Current;
    Cursor.Current = Cursors.WaitCursor;

    // create server SMTP with port 25
    TcpClient SmtpServ = new TcpClient(ServSMTP.Text,25);
    string Data;
    byte[] szData;
    string CRLF = "\r\n";
    LogList.Items.Clear();            

    try
    {
        // initialization
        NetworkStream NetStrm = SmtpServ.GetStream();
        StreamReader  RdStrm= new StreamReader(SmtpServ.GetStream());
        LogList.Items.Add(RdStrm.ReadLine());
            
        // say hello to server and send response into log report
        Data = "HELLO server " + CRLF;                
        szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray());
        NetStrm.Write(szData,0,szData.Length);
        LogList.Items.Add(RdStrm.ReadLine());
        // send sender data
        Data = "MAIL FROM: " + "<" + sFrom.Text + ">" + CRLF;
        szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray());
        NetStrm.Write(szData,0,szData.Length);
        LogList.Items.Add(RdStrm.ReadLine());

        // send receiver data
        Data = "RCPT TO: " + "<" + sTo.Text + ">" + CRLF;
        szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray());
        NetStrm.Write(szData,0,szData.Length);
        LogList.Items.Add(RdStrm.ReadLine());

        // send DATA
        Data = "DATA " + CRLF;
        szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray());
        NetStrm.Write(szData,0,szData.Length);
        LogList.Items.Add(RdStrm.ReadLine());                

        // send content data
        Data = "SUBJECT: " + sSubject.Text + CRLF +
           sMessage.Text + CRLF + "." + CRLF;
        szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray());
        NetStrm.Write(szData,0,szData.Length);
        LogList.Items.Add(RdStrm.ReadLine());                

        // quit from server SMTP
        Data = "QUIT " + CRLF;
        szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray());
        NetStrm.Write(szData,0,szData.Length);
        LogList.Items.Add(RdStrm.ReadLine());                

        // close connection
        NetStrm.Close();
        RdStrm.Close();
        LogList.Items.Add("Close connection");
        LogList.Items.Add("Send mail successly..");

        // back to normal cursor
        Cursor.Current = cr;

    }
    catch(InvalidOperationException err)
    {
        LogList.Items.Add("Error: "+ err.ToString());
    }
}

Reference

  • Document RFC 821 and MSDN for .NET Development

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


Written By
Founder PE College
Indonesia Indonesia
He gradueted from Sepuluh Nopember Institute of Technology (ITS) in Department of Electrical Engineering, Indonesia. His programming interest is VC++, C#, VB, VB.NET, .NET, VBScript, Delphi, C++ Builder, Assembly,and ASP/ASP.NET. He's founder for PE College(www.pecollege.net), free video tutorial about programming, infrastructure, and computer science. He's currently based in Depok, Indonesia. His blog is http://geeks.netindonesia.net/blogs/agus and http://blog.aguskurniawan.net

Comments and Discussions

 
GeneralRe: using System.Web.Mail; Pin
Philip Fitzsimons17-Nov-04 23:49
Philip Fitzsimons17-Nov-04 23:49 
GeneralRe: using System.Web.Mail; Pin
Anonymous4-Mar-05 11:55
Anonymous4-Mar-05 11:55 
GeneralGet MAIL from SMTP Using C# Pin
Anonymous14-Aug-02 9:57
Anonymous14-Aug-02 9:57 
GeneralRe: Get MAIL from SMTP Using C# Pin
MadShad200417-Jan-05 20:57
MadShad200417-Jan-05 20:57 
GeneralSMTP Pin
Anonymous7-Aug-02 20:55
Anonymous7-Aug-02 20:55 
GeneralError Pin
Anonymous11-Jul-02 6:20
Anonymous11-Jul-02 6:20 
GeneralRe: Error Pin
Doug Brower26-Sep-02 2:35
Doug Brower26-Sep-02 2:35 
GeneralAttachment Pin
4-Jul-02 11:57
suss4-Jul-02 11:57 
Nice article!
But how I can send e-mail with attachments?
GeneralRe: Attachment Pin
4-Jul-02 21:12
suss4-Jul-02 21:12 
GeneralLittle bug in your code Pin
Albert Pascual26-Apr-02 8:27
sitebuilderAlbert Pascual26-Apr-02 8:27 
GeneralRe: Little bug in your code Pin
jcaldas1-Apr-04 6:25
jcaldas1-Apr-04 6:25 
Questionhow about the protocol for getting mail from a pop3 server Pin
22-Dec-01 0:52
suss22-Dec-01 0:52 
AnswerRe: how about the protocol for getting mail from a pop3 server Pin
Nish Nishant22-Dec-01 0:59
sitebuilderNish Nishant22-Dec-01 0:59 
AnswerRe: how about the protocol for getting mail from a pop3 server Pin
ynohtna2-Jan-02 22:50
ynohtna2-Jan-02 22:50 
AnswerRe: how about the protocol for getting mail from a pop3 server Pin
Agus Kurniawan19-Jan-02 4:07
Agus Kurniawan19-Jan-02 4:07 

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.