Emagine said:
is there any issues with the mail server?
i have a cliet that hasn't been recioeving emails today and yerturday with CDOSYS,
they have email authentification....
...got hiom to change to aspmail and worked fine... but would prefer CDOSYS
it sounds similar to the problem I was having on win5/7. It's okay now, but as a workaround I had changed the timeout setting on a couple of forms from 10 to 100, and it seemed to work okay, though it was all very clunky.
here's part of the script I use:
//
...
set iMsg = CreateObject("CDO.Message")
set iConf = CreateObject("CDO.Configuration")
Set Flds = iConf.Fields
With Flds
.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = cdoBasic
.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = "
[email protected]"
.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "xxxxxx"
.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = mail.xxxxxx.com
.Item("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 100 '<- I changed this from 10 to get it to work
.Update
End With
...
//
a setting of 10 is working okay for me now, though.