A Quick Overview on Hangfire.io

Hangfire.io is a nice tool to perform background processing in .Net. Those background jobs can go from simple method calls you don’t want to block the user interface for up to recurring tasks for maintaining your application. It’s licensed under the LGPL v3 and can be used in closed source software. Should you need more …

Read more

Saving Emails to Disk in C#

Sending emails in C# is a simple task. All you need is a MailMessage object with your email and a SmtpClient to send it:

The configuration for the SmtpClient is inside the web.config or app.config can look like this example from Sanjay kumar:

Whenever your code is executed, your email will be sent …

Read more