Postal

Create email using ASP.NET MVC views

Attachments

To add attachments to an email, call the Attach method.

dynamic email = new Email("Example");
email.Attach(new Attachment("c:\\attachment.txt"));
email.Send();