Guest User

Using codeigniter: view + mail library

a guest
Apr 19th, 2012
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. <?php
  2. // ....
  3.  
  4. $data = array(
  5. 'nome' => $nome,
  6. 'produtos' => $produtos
  7. );
  8.  
  9. // ....
  10.  
  11. $view = $this->load->view('view_tal',$data,TRUE);
  12.  
  13. // ....
  14.  
  15. $this->email->message($view);
Advertisement
Add Comment
Please, Sign In to add comment