Category: C# / .Net / WPF

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-sharphttps://stackoverflow.com/questions/17462628/the-server-response-was-5-7-0-must-issue-a-starttls-command-first-i16sm1806350To demonstrate how this is done I first create a new Visual Studio project:Some example code for sending an email via a Google email …

Creating a zip archive in C#

StackOverflow link where I got this technique from is here:https://stackoverflow.com/questions/2454956/create-normal-zip-file-programmatically/First create a new console application:Add references to System.IO.Compression and System.IO.Compression.FileSystem:Select a folder containing a set of files that you would …
`