Guest User

Untitled

a guest
Jul 17th, 2018
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. $config['mailtype'] = 'html';
  2. $this->email->set_mailtype("html");
  3. $this->load->library('email', $config);
  4. $this->email->set_newline("\r\n");
  5. $this->email->from('abc@gmail.com'); // change it to yours
  6. $this->email->to($result->email); // change it to yours
  7. $this->email->subject('Thanks For Registration');
  8. $this->email->message($this->load->view('regi_email', '', TRUE));
  9. $this->email->send();
  10. $message = 'Your Login Id: ' . $result->email . ' , Your Password: ' . $result->password . ' & Url is: ' . site_url() . '.';
  11. $resdata = $this->model->sentmsg($message, $result->mobile);
Add Comment
Please, Sign In to add comment