The email folks are telling me that my app needs to connect to a newer 2007 email servers using TLS authentication.
Which is some sort of encryption protocol under smtp.
Does anyone know what I need to do to make this work?
Currently, we are using a nonvisual smtp module to connect and send.
some sample code....
gn_smtp.of_setport(Integer(ls_port))
gn_smtp.of_SetServer(ls_server)
(ls_server is a value from the ini file like bb.mailhost.com)
gn_smtp.of_SetReceipt(false)
gn_smtp.of_setlogin("emailid","passwd")
gn_smtp.of_SetFrom(ls_from, ls_from_name)
and so on...
Does anything change if you now have TLS?
Any help appreciated.
Thanks,
Sheldon