| | |
sending mail
Please support our C# advertiser: Intel Parallel Studio Home
![]() |
0
#2 Oct 7th, 2009
Use the
SmtpClient and MailMessage classes: C# Syntax (Toggle Plain Text)
public static SmtpClient GetSmtpClient() { SmtpClient smtp = new SmtpClient("smtp.server.com"); if (WebConfigurationVariables.SMTPUseAuth) { smtp.Credentials = new NetworkCredential("username", "password"); } return smtp; } protected void ButtonSubmit_Click(object sender, EventArgs e) { if (IsValid) { List<string> Sql = new List<string>(); Sql.Add("Message:"); Sql.Add(TextBoxMessage.Text); try { SmtpClient smtp = GetSmtpClient(); using (MailMessage msg = new MailMessage()) { msg.From = new MailAddress("feedback@______.com", "Online Feedback"); msg.Sender = new MailAddress("feedback@______.com", "Online Feedback"); msg.To.Add(new MailAddress(WebConfigurationVariables.FeedbackEmail)); msg.Subject = "Feedback from www.______.com"; msg.Body = "your message body here"; msg.IsBodyHtml = false; msg.ReplyTo = new MailAddress("noreply@______", "No Reply"); smtp.Send(msg); } } catch (Exception ex) { Log.Exception(ex, Request); } } }
![]() |
Similar Threads
- Problem Sending Mail (VB.NET)
- Subject part is not coming while sending mail (Shell Scripting)
- error while sending mail inside php script (PHP)
- I need a code for sending e-mail (C#)
- problem in sending mail form web application (ASP.NET)
- Sending E-mail Within PHP (PHP)
- Obtain Remote Assistance by Sending an E-mail Message in Windows XP (Windows tips 'n' tweaks)
- Obtain Remote Assistance by Sending an E-mail Message in Windows XP (Windows tips 'n' tweaks)
Other Threads in the C# Forum
| Thread Tools | Search this Thread |
.net access ado.net algorithm array barchart basic bitmap box broadcast buttons c# check checkbox client combobox contorl control conversion csharp custom database datagrid datagridview dataset datetime degrees deployment development disabled displayingopenforms draganddrop drawing editing editor encryption enum event excel file form format forms function gdi+ httpwebrequest i18n image imageprocessing index input install java label list listbox mandelbrot math mathematics mouseclick mysql operator oracle path photoshop picturebox pixelinversion post prime programming radians regex remote remoting richtextbox rows server setup sleep socket sql statistics stream string table text textbox thread time timer update user usercontrol validation visualstudio webbrowser windows winforms wpf xml






