One of the users of my db suddenly cannot send email. (Win7, Access runtime 2010). The vba code uses CDO and has been working for a couple of years.
I took my laptop to their house and couldn't send the email either. Returned home and was able to send the email in question without a problem. I had 4 bars on their WiFi and their email is sending and receiving. They have recently changed their isp to AT&T, which seems to be the only thing different in the whole system. I know there is a problem in some areas sending through Bellsouth, but haven't heard of problems on AT&T. Does anyone out there have any ideas? Thanks.
.item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 'NTLM method
.item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "smtp.gmail.com"
.item("http://schemas.microsoft.com/cdo/configuration/smptserverport") = 465
.item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
.item("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = True
.item("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60
.item("http://schemas.microsoft.com/cdo/configuration/sendusername") = "OrgEmail@gmail.com"
.item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "xxyyzz"
I took my laptop to their house and couldn't send the email either. Returned home and was able to send the email in question without a problem. I had 4 bars on their WiFi and their email is sending and receiving. They have recently changed their isp to AT&T, which seems to be the only thing different in the whole system. I know there is a problem in some areas sending through Bellsouth, but haven't heard of problems on AT&T. Does anyone out there have any ideas? Thanks.