为了账号安全,请及时绑定邮箱和手机立即绑定

带有 HTML 联系表的 PHPMailer

带有 HTML 联系表的 PHPMailer

PHP
慕码人8056858 2022-07-22 11:00:09
抱歉我的英语不好 :( 我在这里遇到了一个大问题,我有带有联系表格的 html 主页。我想用 PHPMailer 发送这个表格,当我发送消息时我得到这个但没有文本:/ 我明白了只有像“这里是主题”这样的示例文本。有人可以帮我吗?这是 phpmailer.php 代码:<?phpuse PHPMailer\PHPMailer\PHPMailer;use PHPMailer\PHPMailer\Exception;require 'src/Exception.php';require 'src/PHPMailer.php';require 'src/SMTP.php';$mail = new PHPMailer(true);                              // Passing `true` enables exceptionstry {    //Server settings    $mail->SMTPDebug = 0;                                 // Enable verbose debug output    $mail->isSMTP();                                      // Set mailer to use SMTP    $mail->Host = 'smtp.test.de';  // Specify main and backup SMTP servers    $mail->SMTPAuth = true;                               // Enable SMTP authentication    $mail->Username = 'MY EMAIL';                 // SMTP username    $mail->Password = 'MY PASSWORT!';                           // SMTP password    $mail->SMTPSecure = 'ssl';                           // Enable TLS encryption, `ssl` also accepted    $mail->Port = 465;                                    // TCP port to connect to    //Recipients    $mail->setFrom('MY EMAIL');    $mail->addAddress('MY EMAIL');     // Add a recipient    //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;}?>我的电子邮件只是为了安全起见
查看完整描述

1 回答

?
鸿蒙传说

TA贡献1865条经验 获得超7个赞

您需要在 PHPmailer 脚本中添加变量 $_POST :


  <?php

    use PHPMailer\PHPMailer\PHPMailer;

    use PHPMailer\PHPMailer\Exception;


    require 'src/Exception.php';

    require 'src/PHPMailer.php';

    require '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 = 'smtp.test.de';  // Specify main and backup SMTP servers

        $mail->SMTPAuth = true;                               // Enable SMTP authentication

        $mail->Username = 'MY EMAIL';                 // SMTP username

        $mail->Password = 'MY PASSWORT!';                           // SMTP password

        $mail->SMTPSecure = 'ssl';                           // Enable TLS encryption, `ssl` also accepted

        $mail->Port = 465;                                    // TCP port to connect to


        //Recipients

        $mail->setFrom('MY EMAIL');

        $mail->addAddress($_POST['mail']);     // Add a recipient




        //Content

        $mail->isHTML(true);                                  // Set email format to HTML

        $mail->Subject = $_POST['subject'];

        $mail->Body    = $_POST['text'];


        $mail->send();

        //echo 'Message has been sent';

        header('Location: http://www.example.com/contact.php');

        exit();

    } catch (Exception $e) {

        echo 'Message could not be sent.';

        echo 'Mailer Error: ' . $mail->ErrorInfo;

    }

    ?>


查看完整回答
反对 回复 2022-07-22
  • 1 回答
  • 0 关注
  • 71 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信