Customer Portal Language
 
Home Knowledge Base ASP Com Objects Setting up a web page for email (ASPEmail)
Information
Article ID6
Created On5/25/2008
Modified5/25/2008
Setting up a web page for email (ASPEmail)

We use ASPEmail to send mail from our servers through webpages. To do this you would first add the sendmail include to your includes directory. Next you would attach the following line of code to the top of your page.

<!--#Include File="includes/sendmail.inc"-->

Create your form and then send the information to the sendmail function call as shown below;

Sendmail From, FromName, SendTo, Subject, Body, Priority

From = Email address of the sender
FromName = Sender's Name
SendTo = where do you want the email to go to
Subject = Subject Line
Body = Body of text
Priority = Sets email priority flag

The include file and html manual can be downloaded below with full instructions.

Download