Search found 2 matches

by cashcashjonny
Mon Apr 16, 2012 4:17 am
Forum: VBScript
Topic: CDO.message - resolved
Replies: 1
Views: 3143

CDO.message - resolved

Ok thanks jvierra, I tried the first code on the vista machine again ... but using a different internet connection. This time the code failed. It turns out ... there was software from the isp installed for the first connection ... making a link to their SMTP server.
by cashcashjonny
Wed Apr 11, 2012 2:09 pm
Forum: VBScript
Topic: CDO.message - resolved
Replies: 1
Views: 3143

CDO.message - resolved

Hello. I have tried this VBScript on my mothers Vista Home Premium & it works. Set Msg = CreateObject("CDO.Message") With Msg .To = "cashcashjonny@yahoo.com" .From = "bananaman@mymail.com" .Subject = "Hello" .TextBody = "sample CDO message" .Send...