Skip to content

Instantly share code, notes, and snippets.

@abfo
Created September 30, 2018 17:20
Show Gist options
  • Select an option

  • Save abfo/dcc02f55fc79e374fe82e8744f11ceb8 to your computer and use it in GitHub Desktop.

Select an option

Save abfo/dcc02f55fc79e374fe82e8744f11ceb8 to your computer and use it in GitHub Desktop.
using (SmtpClient smtp = new SmtpClient())
{
smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
smtp.UseDefaultCredentials = false;
smtp.EnableSsl = true;
smtp.Host = "smtp.gmail.com";
smtp.Port = 587;
smtp.Credentials = new NetworkCredential("email@gmail.com", "password");
// send the email
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment