fideloper / CI-Mandrill

A Codeigniter library for the Mandrill email platform
MIT License
50 stars 29 forks source link

Template #4

Open salfredogonzalez opened 10 years ago

salfredogonzalez commented 10 years ago

I am wondering how to use the view to send an email with mandrill. I already try to include a view from CI.

tizonsoft commented 10 years ago

I use this:

$email = array( 'html' => $this->load->view('email/template_email_1', $data, true), 'subject' => 'text for subject', 'from_email' => 'email@example.com', 'from_name' => 'Example', 'to' => array(array('email' => 'to@example.com )) );

$result = $this->mandrill->messages_send($email);

salfredogonzalez commented 10 years ago

thats perfect thanks