Results 1 to 3 of 3

Thread: VB Script Knowledge Is Needed...

  1. #1

    Thread Starter
    Registered User Lior's Avatar
    Join Date
    Jan 2000
    Posts
    307

    Cool

    Guys...
    How can I send Email from [email protected] to [email protected]
    USING VB SCRIPT ?!!?!?!?!?!?!?

  2. #2
    Lively Member
    Join Date
    Jan 1999
    Location
    India
    Posts
    85

    Lightbulb 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


  3. #3

    Thread Starter
    Registered User Lior's Avatar
    Join Date
    Jan 2000
    Posts
    307

    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
  •  



Click Here to Expand Forum to Full Width