Debugformat info

This commit is contained in:
Marcus 2016-04-21 11:01:55 +02:00
parent 28d85344ee
commit 5dbf14e7f0
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ class PHPMailer
* * `echo` Output plain-text as-is, appropriate for CLI
* * `html` Output escaped, line breaks converted to `<br>`, appropriate for browser output
* * `error_log` Output to error log as configured in php.ini
*
* By default PHPMailer will use `echo` if run from a `cli` or `cli-server` SAPI, `html` otherwise.
* Alternatively, you can provide a callable expecting two params: a message string and the debug level:
* <code>
* $mail->Debugoutput = function($str, $level) {echo "debug level $level; message: $str";};