|
|
|
|
|
| | |
| |
Active Server Pages ASP control controls class classes module script Scripts applet CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
|
|
Subject: |
CDONTS email - requires Exchange or not |
|
From: |
Sandy Toleikis |
|
Date: |
10/25/1999 6:16:35 PM |
|
IP: |
209.149.197.134 |
Help -- tried to get CDONTS ASP mail going. I added the SMTP from Option Pak 4 on our web server and then tried the following code out (see below). I dont get any webpage errors when I execute the code but the test email doesnt come to me either (set myself as sender and receiver). We have Lotus Notes as the mail server. Any ideas would help.
<%
Dim MyBody
Dim MyCDONTSMail
%>
<%
Set MyCDONTSMail = CreateObject("CDONTS.NewMail")
MyCDONTSMail.From= "stoleikis@ourcard.com"
MyCDONTSMail.To= "stoleikis@ourcard.com"
MyCDONTSMail.Subject="This is a Test"
MyBody = "Just testing emai via CDONTs over our test ASP intranet" & vbCrLf
MyBody = MyBody & "We appreciate hard work" & vbCrLf
MyBody = MyBody & "Your stuff will be better soon"
MyCDONTSMail.Body= MyBody
MyCDONTSMail.Send
set MyCDONTSMail=nothing
%> |
Follow Up - Re: CDONTS email - requires Exchange or not - Paul Richards 10/26/1999 5:29:24 AM
|
|

|
|
|
|
|
|
|
|
|
|
|
|
|