For those users how wish to mail from their web pages, we offer ASP Email. This product from Persits Software offers an easy to user ASP based mail system.
The following are code samples from ASPEmail.com
To mail from your asp pages you need these simple commands in your page (please note use of comments):
<%
Set Mail = Server.CreateObject("Persits.MailSender")
Mail.Host = "your-domain-name.com" ' Specify a valid SMTP server
Mail.From = "sales@veryhotcakes.com" ' Specify sender's address
Mail.FromName = "VeryHotCakes Sales" ' Specify sender's name
Mail.AddAddress "andy@andrewscompany.net", "Andrew Johnson, Jr."
Mail.AddAddress "paul@paulscompany.com" ' Name is optional
Mail.AddReplyTo "info@veryhotcakes.com"
Mail.AddAttachment "c:\images\cakes.gif"
Mail.Subject = "Thanks for ordering our hot cakes!"
Mail.Body = "Dear Sir:" & Chr(13) & Chr(10) & _
"Thank you for your business."
On Error Resume Next
Mail.Send
If Err <> 0 Then
Response.Write "Error encountered: " & Err.Description
End If
%>
Check out http://aspemail.com/manual.html for all the object properties avalible with aspemail.
View a working sample at: http://support.persits.com/email/sendmail.asp