We're currently migrating to GMail from Bellmail, and GMail requires a SSL connection for SMTP, but there is no option I can find to set the port numbers or provide credentials to do this, is it possible to enable a feature like this?
I have switched to Google Apps and still trying to solve this issue. Maybe we could pool together and hire someone to work on this project for us.
Thanks,
Ron KramerConsultants On Call
We actually figured this one out ourselves, you need to edit your public.asp file to have the following information:
Mail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing")=2 Mail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver")=Cfg(cnnDB, "SMTPServer") Mail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate")=1 Mail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusername")=Cfg(cnnDB, "HDReply") Mail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword")="*******" Mail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport")=465 Mail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpusessl")=True Mail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout")=60
This has worked for us.
That did the trick.
Thank You!!
Pardon my ignorance, but where in the public.asp file do I need to put this information?