Indica se irá fazer retry de conexão segura para o servidor de recebimento de email.
Tipo | Valor Padrão | Somente Leitura |
---|---|---|
lógico | .F. | S |
Local oServer := TMailMng():New( 0, 3, 3 ) conout( oServer:lSrvRetrySSL ) // Vai exibir ".F." oServer:lSrvRetrySSL := .T. oServer:cUser := "totver" oServer:cPass := "mypass" oServer:Connect() conout( oServer:lSrvRetrySSL ) // Vai exibir ".T." oServer:lSrvRetrySSL := .F. conout( oServer:lSrvRetrySSL ) // Vai exibir ".T." |