Click here to Skip to main content
15,867,834 members
Articles / Web Development / IIS
Article

Send mail through .aspx C#

Rate me:
Please Sign up or sign in to vote.
1.87/5 (14 votes)
15 Nov 20052 min read 218.9K   27   13
How to send an email in Dot Net

All the Contact Us forms needs an e-mail system

In this article you will learn how to send emails from you .aspx site, using plain format, html format also add attachments by two ways, the quick (easy way) and the profesional ( i like this way ) The first step is be sure that the SMTP Server is locally installed at SMTP Service of the IIS

Easy Way

This is an easy and quick way to do that, we will call this form ContactMe.aspx First, we have to import the System.Web.Mail Then in the code behind add the namespace

C#
using System.Web.Mail;
Now build your message
C#
string To      = "cgodinez@technomex.net";
string From    = "mymail@mail.com";
string Subject = "The Famous";
string Body    = "Hello World";

SmtpMail.Send(From,To,Subject,Body);

What is the SmtpMail?

this class has a method called Send that allows the user to send an email, in this way we set four parameters:

SmtpMail.Send("mymail@mail.com","cgodinez@technomex.net","The Famous","Hello World");

As you can see this is the easy and quick way to do that. Now you will lear how to do the professional way (interesting). Here you will send an email including an attachment and CC, we can use the same parameters above

Professional Way (I like this Way)

We have to create an object (MailMessage) called myMail
C#
MailMessage myMail = new MailMessage();

myMail.To       = To;
myMail.Cc    = "acarboncopy@cc.com";
myMail.From    = From;
myMail.Subject    = Subject;

myMail.BodyFormat  = MailFormat.Html; // here you can choose: Plain or HTML

string body = "<html><body> Bolded message <br> <p>The Message</p> </body></html>";

myMail.Body    = body; //set the body message

myMail.Attachments.Add(new MailAttachment("c:\\filename.jpg")); //add the attachment

SmtpMail.Send(myMail);
Now go and check your inbox and see what happend.

So what I did in this code?

As you can see I used an enum from MailMessage class (MailFormat) this enum has 2 options: Text and HTML, I set the HTML and build the Body Message.

You will not receive a value about the sucess of the email message. The reason is that the email is writted into the Inetput folder, also if the mail fails you can go and check the Badmail folder into inetpub, this way if you set an invalid To or From email, the message will be set in this folder.

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
Web Developer Softtek GDC Ensenada
Mexico Mexico
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Questionhow to send newsletter or email in groups Pin
Malakool12-Nov-07 19:53
Malakool12-Nov-07 19:53 

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.