0
0
mirror of https://github.com/PHPMailer/PHPMailer.git synced 2024-09-19 17:42:14 +02:00

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

View File

@ -24,7 +24,7 @@ $mail->isSMTP();
//SMTP::DEBUG_OFF = off (for production use)
//SMTP::DEBUG_CLIENT = client 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
$mail->Host = 'smtp.example.com';