如何将Codeigniter中的sendgrid api库用作第三方库

坐骨神经痛

如何将sendgrid库用作Codeigniter中的第三方。在他们的网站上,我可以找到扩展普通codeigniter电子邮件类的smtp代码。有什么帮助吗?

<?php
$this->load->library('email');

$this->email->initialize(array(
  'protocol' => 'smtp',
  'smtp_host' => 'smtp.sendgrid.net',
  'smtp_user' => 'sendgridusername',
  'smtp_pass' => 'sendgridpassword',
  'smtp_port' => 587,
  'crlf' => "\r\n",
  'newline' => "\r\n"
));

$this->email->from('[email protected]', 'Your Name');
$this->email->to('[email protected]');
$this->email->cc('[email protected]');
$this->email->bcc('[email protected]');
$this->email->subject('Email Test');
$this->email->message('Testing the email class.');
$this->email->send();

echo $this->email->print_debugger();
?>
力奴

步骤1:将sendgrid库复制到第三方文件夹步骤2:将以下代码添加到控制器方法

include APPPATH . 'third_party/sendgrid-php/sendgrid-php.php';

        //$this->load->third_party('sendgrid-php');



        $email = new \SendGrid\Mail\Mail();
        $email->setFrom("[email protected]", "testname");
        $email->setSubject("MailTest");
        $email->addTo('[email protected]', "User");
        $email->addContent("text/plain", "subject");
        $email->addContent(
            "text/html",'<html><body>Message</body><html>');

        $sendgrid = new \SendGrid(('sendgrid-API-KEY_HERE'));
        try {
            $response = $sendgrid->send($email);
            print $response->statusCode() . "\n";
            print_r($response->headers());
            print $response->body() . "\n";
        } catch (Exception $e) {
            echo 'Caught exception: '. $e->getMessage() ."\n";
        }

希望能成功

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章