3

私は最近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で使用するために推奨される別の統合方法はありますか?

ありがとう!

4

1 に答える 1

10

通常の方法で使用できます。電子メールアドレスの配列または電子メールアドレスのコンマ区切りの文字列を渡すことができます。

好き

$list = array('one@example.com', 'two@example.com', 'three@example.com');
// or
//$list = 'one@example.com, two@example.com, three@example.com';

$this->email->to($list);
// or
//$this->email->cc($list);
// or
//$this->email->bcc($list);
于 2012-11-02T12:02:37.083 に答える