Use higher debug level when demonstrating TLS options

This commit is contained in:
Marcus Bointon 2022-07-09 17:03:10 +02:00
parent 4d44b65893
commit fb45a2e39b
No known key found for this signature in database
GPG Key ID: DE31CD6EB646AA24
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ $mail->isSMTP();
//SMTP::DEBUG_OFF = off (for production use) //SMTP::DEBUG_OFF = off (for production use)
//SMTP::DEBUG_CLIENT = client messages //SMTP::DEBUG_CLIENT = client messages
//SMTP::DEBUG_SERVER = client and server messages //SMTP::DEBUG_SERVER = client and server messages
$mail->SMTPDebug = SMTP::DEBUG_SERVER; $mail->SMTPDebug = SMTP::DEBUG_CONNECTION;
//Set the hostname of the mail server //Set the hostname of the mail server
$mail->Host = 'smtp.example.com'; $mail->Host = 'smtp.example.com';