phpmailerHow do I enable debug mode in PHPMailer?
Debug mode in PHPMailer can be enabled by setting the SMTPDebug
property. This property is available on the PHPMailer
class and can be set to any of the following values:
0
: No debug output1
: Commands2
: Data and commands3
: As 2 plus connection status4
: Low-level data output
Example code
// Enable SMTP debugging
// 0 = off (for production use)
// 1 = client messages
// 2 = client and server messages
$mail->SMTPDebug = 2;
Output example
SERVER -> CLIENT: 220 smtp.example.com ESMTP Postfix
CLIENT -> SERVER: EHLO localhost
SERVER -> CLIENT: 250-smtp.example.com
SERVER -> CLIENT: 250-PIPELINING
SERVER -> CLIENT: 250-SIZE 10240000
SERVER -> CLIENT: 250-VRFY
SERVER -> CLIENT: 250-ETRN
SERVER -> CLIENT: 250-STARTTLS
SERVER -> CLIENT: 250-ENHANCEDSTATUSCODES
SERVER -> CLIENT: 250-8BITMIME
SERVER -> CLIENT: 250 DSN
Helpful links
More of Phpmailer
- How can I configure PHPMailer to support Polish characters?
- How do I install PHPMailer using Composer?
- How do I use PHPMailer to attach a ZIP file?
- How can I configure PHPMailer to work with GoDaddy?
- How do I use PHPMailer to send a file?
- How do I use PHPMailer with OAuth 2.0?
- How can I use PHPMailer in Yii 1?
- How can I use PHPMailer to send emails with a Yahoo account?
- How can I send a UTF-8 encoded email using PHPMailer?
- How do I use autoload.php with PHPMailer?
See more codes...