1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?php /** * PHPMailer exception handler * @package PHPMailer */ class PhpMailerException extends \Exception { /** * Prettify error message output * @return string */ public function errorMessage() { $errorMsg = '<strong>' . $this->getMessage() . "</strong><br />\n"; echo $errorMsg; } }