MailMessage mail = new MailMessage();
mail.To.Add("makovetskiyd@yahoo.co.uk");
mail.From = new MailAddress("makovetskiyd@yahoo.co.uk");
mail.Subject = "Test Email";
string Body = "Welcome to CodeDigest.Com!!";
mail.Body = Body;
SmtpClient smtp = new SmtpClient();
smtp.Host = ConfigurationManager.AppSettings["SMTP"];//i get nuller point exception here.. what does the class configuration manager do?
smtp.Send(mail);
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||||
|
|
You can use the built-in classes from Microsoft (System.Net.Mail). For example, here is a quick and easy method for sending email:
In this example, you can send email through Gmail. |
|||||||
|
|
This link took approximately two seconds to locate on Google. |
|||
|
|
|
You can use the System.Net.Mail classes. Here's a sample of how to do it using gmail: Sending email in .NET through Gmail |
|||
|
|