Look at the System.Web.Mail namespace
it's pretty easy, check out:
http://www.aspheute.com/english/20000918.asp
basically create a new MailMessage, set all the properties (To, From,
Subject, Body) and use the Attachments.Add to point to the file to attach.
before doing a SmtpMail.Send though, you might need to do
SmtpMail.SmtpServer ="SMTP_SERVER_ADDRESS"
I think by default it looks for an smtp server on the same machine as your
web site, which is probably what you want.
Karl
--
MY ASP.Net tutorials
http://www.openmymind.net/
"havenoclue" <ha********@discussions.microsoft.com> wrote in message
news:69**********************************@microsof t.com...
I have a database application that is submitted to an Access database.
What
I want is when the form is submitted to automatically send an email to
multiple persons with the info from the form. This could be as an
attachement or plain text. I wouldn't care if it was like the mailto.
I'm
clueless on how to do this.
Any help would be greatly appreciated.