|
6
|
|
|
Be sure to use System.Net.Mail, not the deprecated System.Web.Mail. Doing SSL with System.Web.Mail is a gross mess of hacky extensions.
using System.Net.Mail;
var fromAddress = new MailAddress("from@gmail.com", "From Name");
var toAddress = new MailAddress("to@example.com", "To Name");
const string fromPassword = "fromPassword";
const string subject = "Subject";
const string body = "Body";
var smtp = new SmtpClient
{
Host = "smtp.gmail.com",
Port = 587,
EnableSsl = true,
DeliveryMethod = SmtpDeliveryMethod.Network,
UseDefaultCredentials = false,
Credentials = new NetworkCredential(fromAddress.ToString()NetworkCredential(fromAddress.Address, fromPassword)
};
using (var message = new MailMessage(fromAddress, toAddress)
{
Subject = subject,
Body = body
})
{
smtp.Send(message);
}
|
|
|
|
5
|
|
|
Be sure to use System.Net.Mail, not the deprecated System.Web.Mail. Doing SSL with System.Web.Mail is a gross mess of hacky extensions.
using System.Net.Mail;
var fromAddress = new MailAddress("from@gmail.com", "From Name");
var toAddress = new MailAddress("to@example.com", "To Name");
const string fromPassword = "fromPassword";
const string subject = "Subject";
const string body = "Body";
var smtp = new SmtpClient
{
Host = "smtp.gmail.com",
Port = 587,
EnableSsl = true,
DeliveryMethod = SmtpDeliveryMethod.Network,
UseDefaultCredentials = false,
Credentials = new NetworkCredential(fromAddress.ToString(), fromPassword)
};
using (var message = new MailMessage(fromAddress, toAddress)
{
Subject = subject,
Body = body
})
{
smtp.Send(message);
}
|
|
|
|
4
|
|
edited Oct 29 '08 at 2:31
|
Be sure to use System.Net.Mail, not the deprecated System.Web.Mail. Doing SSL with System.Web.Mail is a gross mess of hacky extensions.
using System.Net.Mail;
MailAddress from var fromAddress = new MailAddress("from@gmail.com", "From Name");
MailAddress to var toAddress = new MailAddress("to@example.com", "To Name");
const string fromPassword = "fromPassword";
const string subject = "Subject";
const string body = "Body";
SmtpClient var smtp = new SmtpClient
{
Host = "smtp.gmail.com",
Port = 587,
EnableSsl = true,
UseDefaultCredentials = false,
Credentials = new NetworkCredential(from.ToString()NetworkCredential(fromAddress.ToString(), fromPassword)
};
using (var message = new MailMessage(fromMailMessage(fromAddress, totoAddress)
{
Subject = subject,
Body = body
})
{
smtp.Send(message);
}
|
|
|
|
3
|
|
edited Oct 21 '08 at 2:13
|
Ugh Be sure to use System.Net.Mail, the accepted answer uses not the deprecated System.Web.Mail, plus some strange Microsoft extensions to the email protocol in order to make the SSL work. Much better to use System.Net.MailDoing SSL with System.Web.Mail is a gross mess of hacky extensions.
using System.Net.Mail;
MailAddress from = new MailAddress("from@gmail.com", "From Name");
MailAddress to = new MailAddress("to@example.com", "To Name");
const string fromPassword = "fromPassword";
const string subject = "Subject";
const string body = "Body";
SmtpClient smtp = new SmtpClient
{
Host = "smtp.gmail.com",
Port = 587,
EnableSsl = true,
UseDefaultCredentials = false,
Credentials = new NetworkCredential(from.ToString(), fromPassword)
};
using (var message = new MailMessage(from, to)
{
Subject = subject,
Body = body
})
{
smtp.Send(message);
}
|
|
|
|
2
|
|
edited Aug 28 '08 at 17:22
|
Ugh, the accepted answer uses the deprecated System.Web.Mail, plus some strange Microsoft extensions to the email protocol in order to make the SSL work. Much better to use System.Net.Mail.
using System.Net.Mail;
MailAddress from = new MailAddress("from@gmail.com", "From Name");
MailAddress to = new MailAddress("to@example.com", "To Name");
const string fromPassword = "fromPassword";
const string subject = "Subject";
const string body = "Body";
SmtpClient smtp = new SmtpClient
{
Host = "smtp.gmail.com",
Port = 587,
EnableSsl = true,
UseDefaultCredentials = false,
Credentials = new NetworkCredential(from.ToString(), fromPassword)
};
using (var message = new MailMessage(from, to)
{
Subject = subject,
Body = body
})
{
smtp.Send(message);
}
|
|
|
|
1
|
|
answered Aug 28 '08 at 14:08
|
using System.Net.Mail;
MailAddress from = new MailAddress("from@gmail.com", "From Name");
MailAddress to = new MailAddress("to@example.com", "To Name");
const string fromPassword = "fromPassword";
const string subject = "Subject";
const string body = "Body";
SmtpClient smtp = new SmtpClient
{
Host = "smtp.gmail.com",
Port = 587,
EnableSsl = true,
UseDefaultCredentials = false,
Credentials = new NetworkCredential(from.ToString(), fromPassword)
};
using (var message = new MailMessage(from, to)
{
Subject = subject,
Body = body
})
{
smtp.Send(message);
}
|
|
|