我发现电子邮件是从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');
?>
答案 0 :(得分:0)
现在,我正在使用 phpMailer 库来实现发送大量电子邮件的目标。