私は最近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();
これは、1人の個人に電子メールを送信するための優れたソリューションのように見えますが、多数の人に送信したい電子メールがある場合はどうなりますか?「to」または「bcc」のいずれかを配列として送信することは可能ですか?
SendGridをCIで使用するために推奨される別の統合方法はありますか?
ありがとう!