1

i'm using codeigniter & ion auth. I'm having problem trying to send out email to user.

this is working:

$message = 'hello';
$this->email->from($this->config->item('admin_email', 'ion_auth'), $this->config->item('site_title', 'ion_auth'));
$this->email->to($user->email);
$this->email->subject($this->config->item('site_title', 'ion_auth') . ' - ' . $this->lang->line('email_forgotten_password_subject'));
$this->email->message($message);

when i change to use tpl, it is not working:
/views/forgot_password.tpl.php

$message = $this->load->view('forgot_password.tpl.php', $data, TRUE);
$this->email->from($this->config->item('admin_email', 'ion_auth'), $this->config->item('site_title', 'ion_auth'));
$this->email->to($user->email);
$this->email->subject($this->config->item('site_title', 'ion_auth') . ' - ' . $this->lang->line('email_forgotten_password_subject'));
$this->email->message($message);

pls advise, thanks.

4

1 回答 1

0

在您的代码中将“forgot_password.tpl.php”更改为“forgot_password.tpl”:

$message = $this->load->view('forgot_password.tpl.php', $data, TRUE);

$this->load->view() 中不需要 .php。

于 2013-07-27T04:16:17.240 回答