1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| using System;
using System.Net;
using System.Net.Mail;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
using (SmtpClient client = new SmtpClient("smtp.gmail.com", 587))
{
client.EnableSsl = true;
client.Credentials = new NetworkCredential("login", "password");
using (MailMessage msg = new MailMessage("from", "to", "subject", "body"))
{
try
{
client.Send(msg);
}
catch (Exception exception)
{
Console.WriteLine(exception.Message);
}
}
}
}
}
} |