954,580 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Email form in C#

Hi I'm new to this forum and I am looking for a little help.

I was wondering if someone could provide some code that allows someone to enter a message into a comment box, hit submit, and then that message is sent to an email account. I also have two text boxes above the larger comment box. One for the email address that the user would like to receive a reply email, and the other for the users name. I would like these two other pieces of information to also be contained in the email message.

i'm using Dreamweaver to design this web site, which is new for me. and I am hoping someone could help me here. thanks

anglerman247
Newbie Poster
1 post since Jan 2007
Reputation Points: 10
Solved Threads: 0
 

System.Web.Mail.MailMessage mail = new System.Web.Mail.MailMessage();
mail.To = "whoyouwantmailtogoto@yoursite.com";
mail.From = "whoyouwantmailtoshowfrom@yoursite.com";
mail.Subject = "Subject";
mail.Body= "Message from " + txtboxName.Text +"
"+"Email Address: " + txtboxEmailAddress.Text +"
"+"Message: " + txtboxMessage.Text;
mail.BodyFormat = (System.Web.Mail.MailFormat.Html);
//mail.Send();
System.Web.Mail.SmtpMail.SmtpServer = "yourmailserver";
System.Web.Mail.SmtpMail.Send(mail);

campkev
Posting Pro in Training
484 posts since Jul 2005
Reputation Points: 14
Solved Threads: 19
 

We NEED Email receieveing Code.. becoz sending is too much easy...........lol
can we read emails in text form...

Siddharthasharm
Newbie Poster
1 post since Aug 2010
Reputation Points: 10
Solved Threads: 0
 

there is not difference in sending and receiving email code. from the given code you will receive email on speciified email id in mail.To property.

We NEED Email receieveing Code.. becoz sending is too much easy...........lol can we read emails in text form...
rohand
Posting Whiz in Training
293 posts since Mar 2010
Reputation Points: 17
Solved Threads: 56
 

asked me email cod for enter hi5

tej kharka
Newbie Poster
1 post since Aug 2011
Reputation Points: 10
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You