我有两个不同的网站(www.kynero.nl和www.hondenkunstjes.nl)。我在两个网站上都添加了联系表格。这些表单由相同的模板组成。
表单由一个php文件处理,该文件只是将内容通过电子邮件发送给我。这个php_file的代码如下。
在这两个网站上,我都会访问“bedankt.html'填写表单后,表示脚本正常运行。
然而,在网站www.hondenkunstjes.nl上,邮件实际上是在www.kynero.nl网站上发送的,我在发送表格时没有收到电子邮件。
我在这里做错了什么?欢迎任何想法!
更新:根据cjs1978的答案,我决定实施PHPMailer。但是,使用下面的代码,页面返回白色屏幕。我在这做错了什么?
<?php
// Import PHPMailer classes into the global namespace
// These must be at the top of your script, not inside a function
use PHPMailer\PHPMailer;
use PHPMailer\Exception;
//Load Composer's autoloader
//require 'vendor/autoload.php';
$Name = $_POST['Name'];
$Email = $_POST['Email'];
$Message = $_POST['Message'];
$mail = new PHPMailer(true); // Passing `true` enables exceptions
try {
//Server settings
$mail->SMTPDebug = 2; // Enable verbose debug output
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'smtp.gmail.com'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = '***@gmail.com'; // SMTP username
$mail->Password = '***'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587; // TCP port to connect to
//Recipients
$mail->setFrom($email, $name);
$mail->addAddress('***@gmail.com'); // Add a recipient
$mail->addReplyTo($email, $name);
//Content
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'Aanvraag via ***';
$mail->Body = " Naam: $Name \n Bericht: $Message";
$mail->send();
echo 'Message has been sent';
} catch (Exception $e) {
echo 'Message could not be sent. Mailer Error: ', $mail->ErrorInfo;
}