Utility to send mails with customizable settings.
using System;
namespace MailDaemon.Core.Report
{
public class PlainTextReport : IReport
{
public string Generate()
{
throw new NotImplementedException();
}
}
}