我在我的网站上添加了一个带有SMTP的phpmailer。我制作了一个phpmailer文件,并完成了所需的所有必要编码。现在我需要知道如何正确地将我的phpmiler.php添加到我的index.html,以便我可以使用我的电子邮件表单。
我的phpmailer.php:
<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
require 'assets/PHPMailer/src/Exception.php';
require 'assets/PHPMailer/src/PHPMailer.php';
require 'assets/PHPMailer/src/SMTP.php';
$mail = new PHPMailer(true); // Passing `true` enables exceptions
try {
//Server settings
$mail->SMTPDebug = 0; // Enable verbose debug output
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'test'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'test'; // SMTP username
$mail->Password = 'test'; // SMTP password
$mail->SMTPSecure = 'ssl'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 465; // TCP port to connect to
//Recipients
$mail->setFrom('test');
$mail->addAddress('test'); // Add a recipient
$mail->addReplyTo('test', 'Information');
$mail->addCC('cc@example.com');
$mail->addBCC('bcc@example.com');
//Content
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'Here is the subject';
$mail->Body = 'This is the HTML message body <b>in bold!</b>';
$mail->send();
echo 'Message has been sent';
} catch (Exception $e) {
echo 'Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
}
?>
我测试了php文件,一切正常,我在个人信息领域使用TEST。
我的HTML表单:
<div class="block">
<h2>Send message</h2>
<form>
<div class="form-group">
<input type="text" name="mail" class="form-control" placeholder="Email Address">
</div>
<div class="form-group">
<input type="text" name="subject" class="form-control" placeholder="Subject">
</div>
<div class="form-group">
<textarea class="form-control" name="text" rows="3" placeholder="Your Message"></textarea>
<button class="btn btn-default" type="submit" >Send Message</button>
</div>
</form>
</div>
如何使这项工作能够将电子邮件,文本和主题带入我的phpmailer.php并将邮件发送到HTML表单?
谢谢,抱歉我的语言不好,不是我的母语。
答案 0 :(得分:1)
答案 1 :(得分:0)
首先,您需要将<form>
更改为
<form action="/maybepath/phpmailer.php" method="POST" >
其次,您需要更改phpmailer.php以从$ _POST获取数据并将其放在适当的位置。试试var_dump($_POST);
,看看你得到了什么。