使用 phpmailer 和 sendgrid 设置直接电子邮件链接时遇到问题

Posted

技术标签:

【中文标题】使用 phpmailer 和 sendgrid 设置直接电子邮件链接时遇到问题【英文标题】:Having problems setting up a direct email link with phpmailer and sendgrid 【发布时间】:2019-07-04 21:30:47 【问题描述】:

我已经在网上浏览了很多东西,但仍然无法让我的“提交”按钮使用 phpMailer 和 Sendgrid 发送电子邮件。这是我的代码:

html

            <form id="contact-form" action="scripts/mailer.php" method="post">
                <fieldset form="#contact-form">
                    <legend>Contact Form</legend>
                    <label class="input-field-name">Name:<br />
                        <input class="input-field" type="text" name="name" required/>
                    </label><br />
                    <label class="input-field-name">Email:<br />
                        <input class="input-field" type="text" name="email" required/>
                    </label><br />
                    <label class="input-field-name">Message Title:<br />
                        <input class="input-field" type="text" name="header" required/>
                    </label><br />
                    <label class="input-field-name">Message:<br />
                        <textarea class="message-field" type="text" name="message" required></textarea>                            
                    </label><br />
                    <button id="submit-button" type="submit">Submit</button>
                </fieldset>
            </form>

PHP

<?php

$name = $_POST["name"];
$email = $_POST["email"];
$header = $_POST["header"];
$message = $_POST["message"];

use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;

require "C:\xampp\composer\vendor\autoload.php";

$mail = new PHPMailer(TRUE);

try 
    $mail->setFrom($email, $name);
    $mail->addAddress("MY EMAIL", "MY NAME");
    $mail->Subject($header);
    $mail->isHTML(True);
    $mail->Body = ("<html>$message</html");
    $mail->AltBody = strip_tags($message);

    $mail->SMTPDebug = 1;
    $mail->isSMTP();
    $mail->Host = 'smtp.sendgrid.net';
    $mail->SMTPAuth = true;
    $mail->SMTPSecure = 'tls';
    $mail->Username = "MY SENDGRID USERNAME";
    $mail->Password = "MY SENDGRID PASSWORD";
    $mail->Port = 587;

    $mail->SMTPOptions = array(
      'ssl' => array(
      'verify_peer' => false,
      'verify_peer_name' => false,
      'allow_self_signed' => true
      )
    );

    $mail->send();
 catch (Exception $e) 
    echo $e->errorMessage();
 catch (\Exception $e) 
    echo $e->getMessage();


?>

我对此很陌生,所以我可能犯了很多错误。我正在使用 xampp,并使用 Composer 在 xampp 供应商文件夹中安装了 PHPMailer 和 Sendgrid。我创建了一个 sendgrid 帐户并创建了一个 API KEY,但不确定如何使用它。我也不确定如何将“提交”按钮链接到 HTML 中的contact.php,我收到“无法发布脚本/contact.php”错误。

这里有一些问题,所以这里是我的问题:

此过程的 PHP 是否正确? 我是否将 PHP 正确链接到“提交”按钮? 如何避免“无法 POST”错误? 是否使用“composer require sendgrid/sendgrid”从终端下载 Sendgrid,然后将主机设置为 smtp.sendgrid.net 足以让 Sendgrid 运行?

【问题讨论】:

【参考方案1】:

试试下面的代码

require 'PHPMailer/PHPMailerAutoload.php';
$mail = new PHPMailer;

$mail->isSMTP();  
$mail->SMTPDebug = 0;                                 // Set mailer to use SMTP
$mail->Host = 'smtp.gmail.com';                       // Specify main and backup SMTP servers
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = 'XXXXX@gmail.com';               // SMTP username
$mail->Password = 'XXXXXXXXX';                    // SMTP password
$mail->SMTPSecure = 'tls';                            // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587;                               // TCP port to connect to gmail 465/587/995/993

$mail->setFrom('XXXXX@gmail.com', 'XXXXXX');
$mail->addAddress('XXXXX@gmail.com', 'XXXXXX');     // Add a recipient
// $mail->addAddress('XXX@example.com');               // Name is optional
$mail->addReplyTo('XXX@gmail.com', 'XXXXXXXX');
// $mail->addCC('cc@example.com');
// $mail->addBCC('bcc@example.com');
   // Optional name
$mail->isHTML(true);                                  // Set email format to HTML

$mail->Subject = 'Testing';

$name=$_POST['name'];
$email=$_POST['email'];
$message=$_POST['message'];

$mail->Body    = 'Name:'.$name ."<br/>".
                 'Email:' .$email."<br/>".
                 'Message:'  .$message;
// $mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
if(!$mail->send()) 
    echo 'Message could not be sent.';
    echo 'Mailer Error: ' . $mail->ErrorInfo;
 else 
    echo("Thank You..");

【讨论】:

你好。这不起作用,我收到无法 POST 错误 我已输入我的凭据,但仍然收到错误消息。 sendgrid 用户名和密码是您用来设置帐户的用户名和密码吗?【参考方案2】:
require 'PHPMailer/PHPMailerAutoload.php';
$mail = new PHPMailer;

$mail->isSMTP();  
$mail->SMTPDebug = 0;                                 // Set mailer to use SMTP
$mail->Host = 'smtp.gmail.com';                       // Specify main and backup SMTP servers
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = 'XXXXX@gmail.com';               // SMTP username
$mail->Password = 'XXXXXXXXX';                    // SMTP password
$mail->SMTPSecure = 'tls';                            // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587;                               // TCP port to connect to gmail 465/587/995/993

$mail->setFrom('XXXXX@gmail.com', 'XXXXXX');
$mail->addAddress('XXXXX@gmail.com', 'XXXXXX');     // Add a recipient
// $mail->addAddress('XXX@example.com');               // Name is optional
$mail->addReplyTo('XXX@gmail.com', 'XXXXXXXX');
// $mail->addCC('cc@example.com');
// $mail->addBCC('bcc@example.com');
   // Optional name
$mail->isHTML(true);                                  // Set email format to HTML

$mail->Subject = 'Testing';

$name=$_POST['name'];
$email=$_POST['email'];
$message=$_POST['message'];

$mail->Body    = 'Name:'.$name ."<br/>".
                 'Email:' .$email."<br/>".
                 'Message:'  .$message;
// $mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
if(!$mail->send()) 
    echo 'Message could not be sent.';
    echo 'Mailer Error: ' . $mail->ErrorInfo;
 else 
    echo("Thank You..");

【讨论】:

以上是关于使用 phpmailer 和 sendgrid 设置直接电子邮件链接时遇到问题的主要内容,如果未能解决你的问题,请参考以下文章

需要傻瓜车把和 Sendgrid (UX) 活动

使用 SendGrid PHP(sendgrid-php 库)发送文件附件

使用 sendgrid 和 node.js 将日志文件附加到电子邮件

在共享主机上使用 Sendgrid 发送电子邮件

如何在 Postman 中使用 SendGrid 的 Inbound Parse Webhook 示例?

有没有办法只使用 sendgrid API 来构建完整的 sendgrid 订阅表单?