我最近注册了 SendGrid 并查看了它们与 CodeIgniter 的集成。
他们建议执行以下操作来发送邮件:
$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('your@example.com', 'Your Name');
$this->email->to('someone@example.com');
$this->email->cc('another@another-example.com');
$this->email->bcc('them@their-example.com');
$this->email->subject('Email Test');
$this->email->message('Testing the email class.');
$this->email->send();
echo $this->email->print_debugger();
这似乎是向单个人发送电子邮件的一个不错的解决方案,但是如果我有一封电子邮件想发送给一大群人怎么办?是否可以将“to”或“bcc”作为数组发送?
将 SendGrid 与 CI 结合使用是否有不同的集成方法?
谢谢!