web-dev-qa-db-ja.com

Codeigniterを使用してccで複数のメールを送信するにはどうすればよいですか?

CIを使用してccが提供されている複数のユーザーにメールを送信する必要があります。私のコードは次のとおりです。この以下のコードは、単一ユーザーの電子メールを送信するために機能しましたが、同じメッセージを複数のユーザーに同時に送信する必要があります。

                $this->load->library('email', $config);            

                $to = 'User email address here';
                $subject = 'Alert information On Products';
                $message = "Dear user,Our new product has been launched.Please visit our site for more informations";                 
                $this->load->library('email');
                // from address
                $this->email->from('admin_email_address');
                $this->email->to($to); // to Email address
                $this->email->cc('email_address_one'); 
                $this->email->subject($subject); // email Subject
                $this->email->message($message);
                $this->email->send();
7
Susanne

このように、$ this-> email-> cc関数で個別の電子メールを使用してみてください。

 $this->email->cc('[email protected],[email protected],[email protected]');

このように使うこともできます

$this->email->to('[email protected], [email protected], [email protected]');

電子メールの参照については、リンクをたどってください ここ

14
Manoj Kumar

配列を使用して、複数のユーザーに電子メールを送信してみてください...

$list = array('[email protected]', '[email protected]', '[email protected]');
$this->email->to($list);
$this->email->subject('This is my subject');
$this->email->message('This is my message');
$this->email->send();
1
vinodh_dizzy