I need to send multiple emails at a time, can any one have example? or any idea ?
I need to send mail to all my site users at a time (Mail content is same for all)
Currently i using following code in a for loop
$this->Email->from = '<no-reply@noreply.com>';
$this->Email->to = $email;
$this->Email->subject = $subject ;
$this->Email->sendAs = 'html';
In Cakephp 2.0 I used the following code: