Create email using ASP.NET MVC views
To add attachments to an email, call the Attach method.
Attach
dynamic email = new Email("Example"); email.Attach(new Attachment("c:\\attachment.txt")); email.Send();