Commit 5139fbe7 by Jansa Jose

Merge branch 'master' into 'dev_production'

mail changed See merge request !24
parents a375c0a4 f3675959
...@@ -197,14 +197,14 @@ function get_cars_details(){ ...@@ -197,14 +197,14 @@ function get_cars_details(){
$this->load->library('email'); $this->load->library('email');
$config = Array( $config = Array(
'protocol' => 'mail', 'protocol' => 'smtp',
'smtp_host' => $settings->smtp_host, 'smtp_host' => $settings->smtp_host,
'smtp_port' => 25, 'smtp_port' => 465,
'smtp_user' => $settings->smtp_username, // change it to yours 'smtp_user' => $settings->smtp_username, // change it to yours
'smtp_pass' => $settings->smtp_password, // change it to yours 'smtp_pass' => $settings->smtp_password, // change it to yours
'smtp_timeout'=>20, 'smtp_timeout'=>20,
'mailtype' => 'html', 'mailtype' => 'html',
'charset' => 'iso-8859-1', 'charset' => 'utf-8',
'wordwrap' => TRUE 'wordwrap' => TRUE
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment