Guys...
How can I send Email from [email protected] to [email protected]
USING VB SCRIPT ?!!?!?!?!?!?!?
Printable View
Guys...
How can I send Email from [email protected] to [email protected]
USING VB SCRIPT ?!!?!?!?!?!?!?
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
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???