|
|
|
|
|
| | |
|
Active Server Pages ASP a directory of ASP tutorials applications scripts components and articles for the novice to professional developer. CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
send a form with CDONTS |
From: |
R Packer |
Date: |
11/23/2000 4:28:05 PM |
IP: |
208.20.41.16 |
Can someone tell me why I cant get this script to send the contents of the form Im using? It will send mail but only this is sent "Message body". Any help is appreciated. Here is the script Im using:
@LANGUAGE="VBSCRIPT"
Option Explicit
Dim objNewMail
Set objNewMail = Server.CreateObject("CDONTS.NewMail")
objNewMail.From = "webmaster@myServer.com"
objNewMail.To = "bob@myServer.com"
objNewMail.Subject = "insert subject line here"
objNewMail.Body = "Message body"
objNewMail.Send
Set objNewMail = Nothing
I did of course change the myServer to the real thing. this darn board wont let me type in the angel brackets and the percent sign... so assume the top 2 lines are wrapped seperate and then the rest is...lol |
Follow Up - U can do like this - Srisahana 12/2/2000 12:49:36 AM
|
|
|
|
|
|
|
|
|
|
|
|