我的网站页脚中有一个使用PHPMailer ..的联系表单,因此它作为模板的一部分显示在所有页面上。它在“顶层”页面(即www.mywebsite.com/index.html)上完美运行,但在内部页面(或第二层页面,即www.mywebsite.com/pricing/basic.html)上却无法发送。控制台表示无法找到位于我的网站目录根目录中的“ contact.php”文件。
我尝试添加“ ../contact.php”作为上一级的表单动作,但仍然找不到它。
<?php
/*
THIS FILE USES PHPMAILER INSTEAD OF THE PHP MAIL() FUNCTION
*/
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
require 'PHPMailer-master/vendor/autoload.php';
/*
* CONFIGURE EVERYTHING HERE
*/
// an email address that will be in the From field of the email.
$fromEmail = 'xxxxxxxx';
$fromName = 'No Reply Email';
// an email address that will receive the email with the output of the form
$sendToEmail = 'xxxxxx';
$sendToName = 'New Contact Form Message';
// subject of the email
$subject = 'New message from contact form';
// form field names and their translations.
// array variable name => Text to appear in the email
$fields = array('name' => 'Name:', 'email' => 'Email:', 'message' => 'Message:');
// message that will be displayed when everything is OK :)
$okMessage = 'Successfully submitted - we will get back to you soon!';
// If something goes wrong, we will display this message.
$errorMessage = 'There was an error while submitting the form. Please try again later';
/*
* LET'S DO THE SENDING
*/
// if you are not debugging and don't need error reporting, turn this off by error_reporting(0);
error_reporting(E_ALL & ~E_NOTICE);
try {
if (count($_POST) == 0) throw new \Exception('Form is empty');
$emailTextHtml .= "<h3>New message from xxxxx xxxxx:</h3><hr>";
$emailTextHtml .= "<table>";
foreach ($_POST as $key => $value) {
// If the field exists in the $fields array, include it in the email
if (isset($fields[$key])) {
$emailTextHtml .= "<tr><th>$fields[$key]</th><td>$value</td></tr>";
}
}
$emailTextHtml .= "</table><hr>";
$emailTextHtml .= "<p>Have a great day!<br><br>Sincerely,<br><br>xxxx xxxx</p>";
$mail = new PHPMailer;
$mail->setFrom($fromEmail, $fromName);
$mail->addAddress($sendToEmail, $sendToName); // you can add more addresses by simply adding another line with $mail->addAddress();
$mail->addReplyTo($_POST['email'], $_POST['name']);
$mail->Subject = $subject;
$mail->Body = $emailTextHtml;
$mail->isHTML(true);
//$mail->msgHTML($emailTextHtml); // this will also create a plain-text version of the HTML email, very handy
if (!$mail->send()) {
throw new \Exception('Email send failed. ' . $mail->ErrorInfo);
}
$responseArray = array('type' => 'success', 'message' => $okMessage);
} catch (\Exception $e) {
// $responseArray = array('type' => 'warning', 'message' => $errorMessage);
$responseArray = array('type' => 'warning', 'message' => $e->getMessage());
}
// if requested by AJAX request return JSON response
if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') {
$encoded = json_encode($responseArray);
header('Content-Type: application/json');
echo $encoded;
}
// else just display the message
else {
echo $responseArray['message'];
}
答案 0 :(得分:0)
这听起来与该脚本中的内容无关,但与它的加载位置有关。尝试将表单操作指向绝对路径而不是相对路径,即action="/contact.php"
而不是相对action="contact.php"
或action="../contact.php"
。这样,无论从何处提交,它都将始终指向同一脚本。
与您描述的问题分开,此行看起来可疑:
require 'PHPMailer-master/vendor/autoload.php';
这表明您可能正在使用PHPMailer自己的composer.json
文件;仅当您在PHPMailer上使用 时才应使用它,而不仅仅是在项目中使用它。通常,您希望vendor
文件夹和composer.json
文件位于您自己的项目的顶层,而PHPMailer的文件将由作曲家放置在vendor/phpmailer
中,尽管您没有这样做不必担心,因为vendor/autoload.php
会解决这一问题。请阅读自述文件,了解如何使用composer在自己的项目中安装PHPMailer。