问题描述:我的php不会将联系表单的详细信息发送到我的电子邮件中。
解决方案:
<?php
require 'PHPMailer/PHPMailerAutoload.php';
$mail = new PHPMailer;
$mail->isSMTP();
$mail->Host = 'smtp.exmail.qq.com';
$mail->SMTPAuth = true;
$mail->Username = 'your_email@example.com';
$mail->Password = 'your_password';
$mail->SMTPSecure = 'ssl';
$mail->Port = 465;
$mail->setFrom('your_email@example.com', 'Your Name');
$mail->addAddress('recipient@example.com', 'Recipient Name');
$mail->addReplyTo('your_email@example.com', 'Your Name');
$mail->isHTML(true);
$mail->Subject = 'Contact Form Submission';
$mail->Body = 'This is the message body of the contact form submission.';
if (!$mail->send()) {
echo 'Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
echo 'Message has been sent.';
}
?>
推荐的腾讯云相关产品:
希望以上解决方案对你有帮助。如果问题仍然存在,请提供更多详细信息,以便我们能够更准确地帮助你解决问题。
领取专属 10元无门槛券
手把手带您无忧上云