How to send an e-mail via Google SMTP using C#
First things first, some useful StackOverflow links: https://stackoverflow.com/questions/9201239/send-e-mail-via-smtp-using-c-sharp https://stackoverflow.com/questions/17462628/the-server-response-was-5-7-0-must-issue-a-starttls-command-first-i16sm1806350 To demonstrate how this is done I first create a new Visual Studio project: Some example code for sending an email via a Google email account (smtp.goolgle.com) – obviously replace this with email / credentials of your own… I put the code within a try-catch block …
Continue reading ‘How to send an e-mail via Google SMTP using C#’ »