Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Ho to send to email from ASP/JavaScript
Message
 
To
28/03/2000 14:33:22
General information
Forum:
Internet
Category:
Email
Miscellaneous
Thread ID:
00350341
Message ID:
00352018
Views:
13
It is a standard COM object. This sample code sends an E-mail from ASP

<%
Dim cText, Mail
Set Mail = Server.CreateObject("Persits.MailSender")
Mail.Host = "EXCHANGE_SERVER" ' This is your mail server address
Mail.Subject = "Your Request"
Mail.From = "support@support.com"

cText = cText & "This automated message is to inform you that your Request has "
cText = cText & "been received. Response time during normal business "
cText = cText & "hours (Monday through Friday 9am-6pm Eastern Standard Time) is typically "
cText = cText & "less than 48 hours. "
cText = cText & "" & chr(13) & chr(13)
cText = cText & "Note: Please do not reply to this automated message."

Mail.Body = cText
Mail.IsHTML =False
Mail.AddAddress Request.Form("emailaddress")
Mail.AddAddress "support@support.com"
Mail.Send
%>

>OK. I only noticed the 30 day warning on the first paragraph of the download page. I stand corrected.
>
>Is it implemented as a COM component or is it ASP script?
>
>>It is free, but the advanced functions require a key after 30 days.
>>The advanced functions are queued messaging, embedded
>>images and Quoted-Printable format. Basic E-Mail and attachment sending
>>remains free.
>>
>>
>>>>Go to www.persits.com and download ASPEMail. It is free and is very powerful to send E-Mail from
>>>>ASP or any scripting language. I've used it for a while now with no problems..
>>>>
>>>>>I had a website with user registeration facility:
>>>>>
>>>>>That is devolped in Microsoft Interdev (ASP/JavaScript) and Access is used as backend.
>>>>>
>>>>>I want when a user fills the regiseration form an email should be generated.
>>>>>like auto response after regiseration. any ideas how to do it in ASP/Java Script.
>>>>>
>>>>>Thanks in advance
>>>>>
>>>>>Jeetu
>>>
>>>It is free for 30 days. After that you have to pay for a key.
Previous
Reply
Map
View

Click here to load this message in the networking platform