发送网格给出致命错误



我已经根据文档输入了代码,我唯一做的就是添加模板。谁能看出出了什么问题?

    <?php
    error_reporting(E_ALL);
    ini_set("display_errors", 1);
    date_default_timezone_set('EST');
    # Include the API
    require 'vendor/autoload.php';
    require 'lib/SendGrid.php';
    require 'html2text.php';
    # Instantiate the client.
    $sendgrid = new SendGrid('...', '...', array("turn_off_ssl_verification" => true));
    $html = $_POST["message"];
    $text = convert_html_to_text($html);
    $date = date('l, F jS ');
    # Make the call to the client.
    $email = new SendGridEmail();
    $email
        ->addTo('...')
       # ->addTo('...') uncomment on final script
        ->setFrom('...')
        ->setSubject('New reminder for ' . $date)
        ->setText($text)
        ->setHtml($html)
        ->addFilter("templates", "enabled", 1)
        ->addFilter("templates", "template_id", "a874a34a-a9b7-460b-a5ae-7226e68da0f1")
    ;
    print '<h1>Sent successfully</h1>';
    ?>

结果:

Fatal error: Class 'SendGridEmail' not found in /home/[...]/public_html/[...]/sendgrid.php on line 29
看起来

SendGridEmail类没有正确自动加载。要手动修复它,您可以添加 require 'lib/SendGrid/Email.php'; .

确保你有 php 5.8 或 7.0。我遇到了同样的问题,做了以下操作才能使其工作:

  1. 更新的作曲家.json
{
    "require": {
        "sendgrid/sendgrid": "~5.1"
    }
}
  1. PHP composer.phar 更新

  2. PHP composer.phar 安装

祝你好运。

如果您没有使用 Composer,只需下载并安装库的最新打包版本作为 zip。

然后需要包中的库:

require("path/to/sendgrid-php/sendgrid-php.php");

相关内容

  • 没有找到相关文章