在PHPMailer 中,錯誤處理是透過異常來管理的,而不僅僅是透過回顯到瀏覽器的錯誤訊息來管理。為了有效地處理錯誤,建議將 PHPMailer 傳送呼叫包裝在 try-catch 區塊中。
require_once '../class.phpmailer.php'; $mail = new PHPMailer(true); // defaults to using php "mail()"; the true param enables exception handling try { // Set email parameters $mail->AddReplyTo('[email protected]', 'First Last'); $mail->AddAddress('[email protected]', 'John Doe'); $mail->SetFrom('[email protected]', 'First Last'); // ... configure the email further $mail->Send(); echo "Message Sent OK\n"; } catch (phpmailerException $e) { echo $e->errorMessage(); // Pretty error messages from PHPMailer } catch (Exception $e) { echo $e->getMessage(); // Generic error messages for other exceptions }
在此範例中,PHPMailer 拋出的例外(例如,無效的收件者電子郵件地址)將被捕獲,並且使用 errorMessage() 顯示錯誤訊息。其他異常(例如連線問題)將被捕獲並使用 getMessage() 顯示訊息。
請注意,透過擷取異常,腳本可以提供更好的錯誤處理功能,例如記錄錯誤並傳回自訂給使用者的錯誤訊息。
以上是如何有效處理 PHPMailer 錯誤而不將其回顯到瀏覽器?的詳細內容。更多資訊請關注PHP中文網其他相關文章!