How to send a multiple emails at a time in cakephp

后端 未结 3 1926
日久生厌
日久生厌 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:00

    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);
    

提交回复
热议问题