/* ------------------------ My Meta Content Here SEO ------------------------ */

Pages

Main Menu

Monday, May 13, 2013

How to send Email with Attachemnts using Asp.Net and C#.net Use the following: //use the following namespaces in the top of the page using System.Net.Mail; using System.Net.Mime; //Use the following code to send the email MailMessage mm = new MailMessage(); mm.To.Add("to Email Address"); mm.From = new MailAddress("from email"); mm.Subject = "Any Subject"; mm.Body = "Body Message herre" SmtpClient ss = new SmtpClient("your...
Read More »

My Blog List