我想写简单联系表。我使用以下代码
<?php
// $email and $message are the data that is being
// posted to this page from our html contact form
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ;
// When we unzipped PHPMailer, it unzipped to
// public_html/PHPMailer_5.2.0
require('C:\xampp\php\lib\PHPMailer\PHPMailerAutoload.php');
$mail = new PHPMailer();
// set mailer to use SMTP
$mail->IsSMTP();
// As this email.php script lives on the same server as our email server
// we are setting the HOST to localhost
$mail->Host = "smtp.wp.pl"; // specify main and backup server
$mail->SMTPAuth = true; // turn on SMTP authentication
// When sending email using PHPMailer, you need to send from a valid email address
// In this case, we setup a test email account with the following credentials:
// email: send_from_PHPMailer@bradm.inmotiontesting.com
// pass: password
$mail->Username = "test@wp.pl"; // SMTP username
$mail->Password = "test"; // SMTP password
// $email is the user's email address the specified
// on our contact us page. We set this variable at
// the top of this page with:
// $email = $_REQUEST['email'] ;
$mail->From = $email;
// below we want to set the email address we will be sending our email to.
$mail->AddAddress("test@wp.pl", "Test na WP");
// set word wrap to 50 characters
$mail->WordWrap = 50;
// set email format to HTML
$mail->IsHTML(true);
$mail->Subject = "You have received feedback from your website!";
// $message is the user's message they typed in
// on our contact us page. We set this variable at
// the top of this page with:
// $message = $_REQUEST['message'] ;
$mail->Body = $message;
$mail->AltBody = $message;
if(!$mail->Send())
{
echo "Message could not be sent.
";
echo "Mailer Error: " . $mail->ErrorInfo;
exit;
}
echo "Message has been sent";
?>
但是我会犯错误:
Fatal error: Uncaught Error: Class 'PHPMailer' not found in C:\xampp\htdocs\contact.php:12 Stack trace: #0 {main} thrown in C:\xampp\htdocs\contact.php on line 12
请告诉我该代码应更改的内容。 我尝试在C:\ xampp \ htdocs和C:\ xampp \ php \ lib中添加PHPMailer.php类,但这并没有帮助我。我应该将此文件添加到其他位置吗?还是添加其他PHPMailer类文件?