email icon indicating copy to clipboard operation
email copied to clipboard

Fuel PHP Framework - Fuel v1.x Email library

Results 1 email issues
Sort by recently updated
recently updated
newest added

Example: ~~~ $mailer = Email::forge(); $body = View::forge('email/template', $data); $mailer->html_body($body); foreach ($mailing_list as $user) { $body->set('user', $user); $mailer->to($user['email'])->send(); } ~~~ Code like this throw error or work slow because multi...