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)
C
In Cakephp 2.0 I used the following code:
$result = $email->template($template, 'default') ->emailFormat('html') ->to(array('first@gmail.com', 'second@gmail.com', 'third@gmail.com'))) ->from($from_email) ->subject($subject) ->viewVars($data);