我有一個內置在CodeIgniter中的應用程序。我需要以下電子郵件相關任務的一些幫助。請注意,所有電子郵件都需要SSL。用代碼點火器設置多功能電子郵件
1)發送電子郵件祝賀並歡迎用戶訪問網站 2)發送電子郵件確認用戶帳戶已被刪除,如果他們選擇離開。 3)發送電子郵件以提醒用戶從其他用戶發送給他們的請求。 4)設置併發送「忘記用戶名」的電子郵件,最後但不是最不重要 5)發送電子郵件重置密碼,以防用戶不記得如何登錄。
感謝您的幫助,非常感謝。
功能註冊(){
$data = array(
'sign_up_mail'=>'Welcome and thanks for joining...'
);
$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]', 'test app');
$this->email->to($this->input->post('email_address'));
$this->email->subject('Account Registration');
$this->email->message($htmlMessage);
$this->email->alt_message($txtMessage);
$this->email->send();
}
你會使用這下面列出的各種電子郵件中改變消息的方法? data ['message'] =「嘿,你有追隨者的要求!」; $ email = $ this-> load-> view('email/template',$ data,TRUE);
我相信這個方法適用於像用戶的歡迎和警報等,我怎麼會去連接過程中重設用戶名/密碼或確認刪除簡單的事情?你如何連接電子郵件進程與操作數據庫中的數據?
「有些幫助」或「某些代碼」? –
我粘貼了一些應用的代碼,如果您的印象是存在陰暗的意圖,請忽略請求。 – Deliri