私が使用している電子メールのように、さまざまなユーザーに電子メールを送信したい 問題は、時間がかかることです
foreach($users as $user){
$this->Email->smtpOptions = array(
'port' => '25',
'timeout' => '30',
'host' => 'smtp.topnet.tn',
);
Envoie Mail
$this->Email->delivery = 'smtp';
$this->Email->reset();
$this->Email->from = $from;
$this->Email->to = $To;
$this->Email->subject = $subject;
$this->set('id_user',$user_id);
$this->set('password',$pass);
$this->Email->template = 'activcompte';
$this->Email->sendAs = 'both';
$this->Email->send();
}