using System;
using System.Net;
using System.Net.Mail;
class MainClass
{
    public static void Main(string[] args)
    {
        SmtpClient client = new SmtpClient("192.168.1.12", 25);
        using (MailMessage msg = new MailMessage())
        {
            msg.From = new MailAddress("
[email protected]");
            msg.Subject = "***Dexter DB***";
            msg.Body = "***DB backup done***"; // I want to change this so i can do this in html file - how do i pick up this file and send a html form?
            msg.To.Add(new MailAddress("
[email protected]"));
            client.Send(msg);
        }
    }
}