我如何获取 mailjet required_once email.php 文件以在 plain/core php 中发送电子邮件

how i can get mailjet required_once email.php file to send email in plain/core php

我从 mailjet 站点 https://www.mailjet.com/docs/code/php/pear 找到了电子邮件发送示例 php 代码,因此我尝试发送电子邮件但不加载普通 php 代码中的库。在下面的示例中,我不知道如何获得 required_once("email.php").

谁能帮我解决这个问题?是否有可能在核心 php 中使用 mailjet smtp 发送电子邮件。 谢谢。

示例代码

<?php
    require_once "email.php";
    $headers = array ('From' => 'You <myemail@gmail.com>','Subject' => 'My first email by Mailjet');
?>

现在,我正在使用 phpMailer 库来实现发送大量电子邮件的目标。