You have to use System.Web.Mail namespace Below is the code snippets :
using System.Web.Mail;
MailMessage myemail = new MailMessage(); myemail.From = "hhh@hhh.com" myemail.To = bbb@bbb.com; myemail.Subject="Testing"; myemail.Body="Testing"; myemail.Fields["http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"] = 1; myemail.Fields["http://schemas.microsoft.com/cdo/configuration/sendusername"] = "myusername"; myemail.Fields["http://schemas.microsoft.com/cdo/configuration/sendpassword"] = "mypass"; try { System.Web.Mail.SmtpMail.SmtpServer= "mail.yourdomain.com" System.Web.Mail.SmtpMail.Send(myemail); Response.Write("send successfully"); } catch(Exception Error) { Response.Write("Failed"); }
Replace yourdomain.com with your domain name. Replace user name with your mail username (full address) Replace password with your email password.
Remember, you have to authenticate yourself before you can send email from our server or else the mail will not be delivered.
|