在仔細閱讀了代碼并對其工作原理進行了輕微優化之后,我將其粘貼到這里。。對于那些在html/php/pear中遇到同樣問題的人來說,這會有幫助嗎 <?phperror_reporting(E_ALL ^ E_NOTICE ^ E_DEPRECATED ^ E_STRICT);require_once "Mail/Mail-1.4.1/Mail.php";$name = $_POST["Full_Name"];$email = $_POST["email"];$subject = $_POST["subject"];$message = $_POST["message"];$host = "mail.example.com"; $username = "xyz@example.com";$password = "abc";$port = "25";$to = "xyz@example.com";$reply_to = "xyz@example.com"; $headers = array ('From' => $email, 'To' => $to, 'Subject' => $subject, 'Reply-To' => $reply_to);$smtp = Mail::factory('smtp', array ('host' => $host,