How can you send an email with an attachmentfrom a .NET application?http://www.aspalliance.com/hrmalik/articles/sending_email_with_aspnet.aspxThe article does not say how to add an ATTACHMENT to the email messageTrue, they name what class to use but not how to use it<BR><BR>In C#:<BR><BR>MailAttachment attachment = new MailAttachment("c:file.jpg");<BR>msg.Attachments.Add(attachment);<BR><BR>