0
我想發送電子郵件使用電子郵件類(CodeIgniter)問題是, 電子郵件發送這麼簡單的文本格式... 我想設計電子郵件(HTML,表和顏色)或什麼是使用CodeIgniter進行電子郵件的高級方式。在Codeigniter中使用電子郵件類(高級方式)
我想發送電子郵件使用電子郵件類(CodeIgniter)問題是, 電子郵件發送這麼簡單的文本格式... 我想設計電子郵件(HTML,表和顏色)或什麼是使用CodeIgniter進行電子郵件的高級方式。在Codeigniter中使用電子郵件類(高級方式)
function signup(){
#stripped out the validation code
#stripped out the db insert code
$data = array(
'some_var_for_view'=>'Some Value for View'
);
$htmlMessage = $this->parser->parse('user/email/signup_html', $data, true);
$txtMessage = $this->parser->parse('user/email/signup_txt', $data, true);
#send the message
$this->email->from('[email protected]', 'CSSNinja');
$this->email->to($this->input->post('email_address'));
$this->email->subject('Account Registration Confirmation');
$this->email->message($htmlMessage);
$this->email->alt_message($txtMessage);
$this->email->send();
}
我的問題是現在解決了這個代碼鏈接發現下面
http://www.webdevkungfu.com/email-templates-with-codeigniter/