How to send a multiple emails at a time in cakephp

后端 未结 3 1931
日久生厌
日久生厌 2020-12-18 06:44

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

3条回答
  •  臣服心动
    2020-12-18 07:09

    Try this:

    $tests = array();
    foreach($users as $user) {
        $tests[] = $user['User']['email'];
    }
    
    $mail = new CakeEmail();
    $mail->to($tests) 
        ->from('')
        ->subject('ALERT')
        ->emailFormat('html')
        ->send('Your message here');
    

提交回复
热议问题