|
|
|
|
|
| | |
|
Active Server Pages asp source code database MS SQL MS Access .mdb adovbs.inc cookies calendar codes sql commands scripts asp programming tutorials iis web server components 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
|
|
|
|
|
|
|
|
|
|
|
|