Click here to Skip to main content
Licence 
First Posted 24 Nov 2002
Views 237,556
Downloads 6,606
Bookmarked 101 times

SendMail 101 - How to send e-mails over SMTP (C# and ASP.NET)

By eightfour | 24 Nov 2002
This sample shows you how to send e-mails over SMTP using the Mail-Class in C# and ASP.NET.
4 votes, 20.0%
1
1 vote, 5.0%
2
3 votes, 15.0%
3
3 votes, 15.0%
4
9 votes, 45.0%
5
3.50/5 - 20 votes
μ 3.52, σa 2.88 [?]

Sample Image - SendMail01.gif

Introduction

In this article I will show you how easy it is to create your own mailer. This sample is for beginners and provides just one To:, Cc: and Bcc: - there is also no parser for the From: - TextBox, so you don't have to use white spaces for the From-Name.

Using the code

The code is very small and easy to read, so I don't have many things to explain. At first I have created some TextBoxes using Drag & Drop (VisualStudio). Then I double-clicked on the submit-button and Visual Studio created an event for it. All the important source is inside the click-event.

1. Create an instance of SmtpMail.
2. Set the properties with text from the TextBoxes.
3. Try to send the mail and write info to the screen.

protected void ButtonSubmit_Click(object sender, System.EventArgs e)
{
    Server.ScriptTimeout = 1000;
    Response.Flush();

    SmtpMail.SmtpServer = "localhost";
    MailMessage mail = new MailMessage();
    mail.To = this.TextBoxTo.Text;
    mail.Cc = this.TextBoxCc.Text;
    mail.Bcc = this.TextBoxBcc.Text;
    mail.From = this.TextBoxFrom.Text;
    mail.Subject = this.TextBoxSubject.Text;
    mail.Body = this.TextBoxBody.Text;

    try
    {
        SmtpMail.Send(mail);
        Response.Write("The Mail has been sent to: ");
        Response.Write(mail.To);
        Response.Write(mail.Cc);
        Response.Write(mail.Bcc);
    }
    catch(System.Exception ex)
    {
        Response.Write(ex.Message);
    }

    Response.Flush();
}

Points of Interest

For the Demo I have created an Installer (msi-file). So you just extract the file and start the installer. The virtual directory etc. creates the installer for you - also a shortcut on your desktop, so you just doubleclick it and see the demo. But if it doesn't work (an error occurs) you have to change the options for your smtp-server. Normally the server is running but doesn't accept any mails from any computer - you have to change this setting.

Here how you can do it (sorry but I have a german Windows, so the text is maybe different from yours):

First open your IIS and click with the right mouse-button on your SMTP-server:

Then select "Eigenschaften" or "Properties" (I think it's called in English):

A new Window opens. Here go to the second tab and click on the last button:

And here is one more window. You have the choice between adding a special computer (ip, name) which is allowed to send mails, and to give this permission to all computers (second option):

That's it - now the Demo has to work!

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

eightfour

Web Developer

Germany Germany

Member
1978-I was born
1989-My parents (++me, ++myBrother) moved to Germany
1990-I've got my first Computer (Amstrad CPC-464)
1991-I've bought a Commodore C64 by myself
1992-I've bought my first PC (486sx25)
1993-My first Website (static HTML) was ready
1993-PHP, ASP, SQL, C++, JavaScript, Python
2001-eightfour goes csharp

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalthis way work! Pinmemberberkut200610:21 12 Mar '11  
GeneralExe of Web Application PinmemberGaurav.Tekkie22:09 20 May '10  
GeneralRe: Exe of Web Application Pinmemberberkut20067:42 22 Mar '11  
Generalwin 7 Pinmemberaeolus4m3:02 4 Sep '09  
QuestionError Pinmemberratneshsoni4:28 4 Aug '09  
Generalcan't received email although follow all the step of your guide .anybody help me ! plz . Pinmemberfantasy20080822:46 10 Jul '08  
Generalcan't able to send email [modified] PinmemberSanjay k Jain2:19 4 Jun '08  
Generalhai again this is paulraj PinmemberPaul's7:46 19 Nov '07  
Generaltransport error code 0x800ccc15 PinmemberPaul's7:36 19 Nov '07  
GeneralRe: transport error code 0x800ccc15 PinmemberThe Geek3:57 25 Mar '08  
QuestionRe: transport error code 0x800ccc15 PinmemberSaurabh Tripathi0:31 30 Apr '08  
Generalcould not acess cdo.Message Pinmemberkoorasrinivas22:42 8 Jan '07  
GeneralCould not access "CDO.Message" PinmemberRamesh.Tsi21:19 10 Dec '06  
QuestionHow to find the rejected recipient addresses? Pinmemberanees770:15 28 Jun '06  
Generalsame error Pinmemberlakshmi patil23:52 28 Dec '05  
GeneralCould not access 'CDO.Message' object Pinmemberhany mahmoud23:52 14 Sep '05  
Questionwhy can't send out my Email? Pinsusslideyong19:10 26 Apr '05  
AnswerRe: why can't send out my Email? PinmemberSpring Boy22:58 27 Apr '05  
AnswerRe: why can't send out my Email? PinmemberGaurav.Tekkie22:14 20 May '10  
QuestionHow to read from a database and send to more than one email address Pinmemberpaulpinder4:19 3 Dec '04  
AnswerRe: How to read from a database and send to more than one email address Pinmembermosn8417:38 2 Jan '08  
GeneralOpen Server Relay PinmemberChris Porter6:57 20 Aug '04  
Questioncannot send email using SMTP???? Pinmemberchoonchi7:04 26 Dec '03  
GeneralRelaying vs. Authentication Pinmemberyigitatli18:19 25 Aug '03  
General[Message Removed] PinmemberMojtaba Vali20:34 10 May '06  

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

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120209.1 | Last Updated 25 Nov 2002
Article Copyright 2002 by eightfour
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid