我有一个使用 PHP 的联系我们页面。像所有联系我们一样,有人点击发送后,它会向我的电子邮件发送警告。
问题是它不起作用。该脚本在我的本地主机中运行良好,它不仅在服务器上运行,也没有显示任何错误。
$default_path = get_include_path(); set_include_path(dirname(__FILE__)."/../"); require_once("extensions/PHPMailer/class.phpmailer.php"); set_include_path($default_path); $mail = new PHPMailer(); $mail->IsSMTP(); // send via SMTP $mail->SMTPSecure="ssl"; $mail->Host="smtp.gmail.com"; $mail->SMTPDebug =0; $mail->Port=465; $mail->SMTPAuth = true; // turn on SMTP authentication $mail->Username = Yii::app()->params['sender_email']; // SMTP username $mail->Password = Yii::app()->params['sender_password']; // SMTP password $webmaster_email = Yii::app()->params['webmaster_email']; //Reply to this email ID $mail->From = $email_address; $mail->FromName = "Webmaster"; $mail->AddAddress($email_address,""); $mail->AddReplyTo($webmaster_email,"Webmaster"); $mail->WordWrap = 70; // set word wrap //$mail->AddAttachment("/var/tmp/file.tar.gz"); // attachment //$mail->AddAttachment("/tmp/image.jpg", "new.jpg"); // attachment $mail->IsHTML(true); // send as HTML $mail->Subject = $mailcontent->subject; $mail->Body = $mailcontent->body; //$mail->AltBody = "This is the body when user views in plain text format"; //Text Body $mail->Send();
我认为这是因为服务器配置错误(这是我第一次设置服务器),但我不知道我做错了什么。
防火墙已经设置为允许所有流量,所以这不是防火墙问题。
没有错误也没有结果让我很困惑。