Newsletter Signup
File Upload Component
Encryption and Secure Mail Component
NT Security and Permission Component
Data-bound Editable Grid Component

With AspEmail, sending a message is only a few lines of code away:

<%
Set Mail = Server.CreateObject("Persits.MailSender")

Mail.Host = "smtp.smtp-server.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
%>


Copyright © 1999 Persits Software, Inc.
All Rights Reserved
Questions? Comments? Write us!