Local oServer := TMailMng():New( 0, .T. )
conout( oServer:lSMTPConnected ) // Vai exibir ".F."
oServer:cSrvAddr := "mail.totvs.com.br"
oServer:cUser := "totver"
oServer:cPass := "mypass"
oServer:SMTPConnect()
conout( oServer:lSMTPConnected ) // Vai exibir ".T."
|