|
 |
asp_components thread: Email Component in ASP?
Message #1 by "David" <dgozali@n...> on Wed, 10 May 2000 21:37:49
|
|
Is there a component that I can use to receive email automatically( ex:
after a user click on a registration form). And also will automatically
email the registrer. Thanks in advance!
Message #2 by "John Wicks" <jwicks@s...> on Wed, 10 May 2000 13:36:49 -0700
|
|
The CDONTS components allow you to send mail.
dim m
set m = Server.CreateObject("CDONTS.NewMail")
m.From = fromName
m.To = toName
m.CC = ccName
m.bcc = bccName
m.Subject = subject
m.Body = bodyText
m.Importance = 1
m.Send()
Set m = Nothing
John Wm. Wicks
Internet Applications Developer
SacWeb, Inc.
-----Original Message-----
From: David
Sent: Wednesday, May 10, 2000 2:38 PM
To: ASP components
Subject: [asp_components] Email Component in ASP?
Is there a component that I can use to receive email automatically( ex:
after a user click on a registration form). And also will automatically
email the registrer. Thanks in advance!
Message #3 by "David" <dgozali@n...> on Fri, 12 May 2000 18:7:49
|
|
Thanks. But, how do I get this component? Does it come with ASP 3.0? I am
currently using PWS/ASP 2.0.
|
|
 |