|
-
May 18th, 2000, 03:12 AM
#1
Thread Starter
Registered User
Guys...
How can I send Email from [email protected] to [email protected]
USING VB SCRIPT ?!!?!?!?!?!?!?
-
May 18th, 2000, 03:22 AM
#2
Lively Member
CDO mailing
Can be done using ASP on Webserver
Dim mail
Set mail = Server.CreateObject("CDONTS.NewMail")
mail.From = "Myname"
mail.To = "To Address"
mail.Subject = "Subject"
mail.Body = "Message"
mail.BodyFormat = 1
mail.MailFormat = 1
mail.Send
Set mail = Nothing
-
May 18th, 2000, 03:36 AM
#3
Thread Starter
Registered User
Thanks...BUT...
Man...
Thanks for trying to help...but I already know this method using the ASP, I need to solve the problem and to be able to send Email using VB SCRIPT ONLY !!!!
Any Ideas???
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|