Skip to content
andrewdavey edited this page Jan 23, 2011 · 2 revisions

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

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