Welcome Guest, Not a member yet? Register   Sign In
HTTP error
#2

(01-03-2015, 12:13 AM)Thamaraiselvam Wrote: What is wrong with my code , please tell me

<?php


Class Email extends CI_Controller
{
public function __construct()
{
parent::__construct();
}


public function index(){
$config= Array(
'protocol'=>'smpt',
'smtp_host'=>'ssl://smtp.googlemail.com',
'smtp_port'=> 465,
'smtp_user'=> '[email protected]',
'smtp_pass'=> '###',
);

$this->load->library('email');

$this->email->set_newline("\r\n");

$this->email->from('[email protected]','Thamaraiselvam T');
$this->email->to('[email protected]');
$this->email->subject('This email sent from Programming');
$this->email->message('Dear Selva , This makes you happy definetly');
if($this->email->send()){

echo "Yep your mail has been sent !";
}

else{

show_error($this->email->print_debugger());
}

}
}



getting http error like following

Can you paste you .htaccess file settings here?
Reply


Messages In This Thread
HTTP error - by Thamaraiselvam - 01-03-2015, 12:13 AM
RE: HTTP error - by artemweb - 01-03-2015, 01:37 AM
RE: HTTP error - by InsiteFX - 01-03-2015, 05:59 AM
RE: HTTP error - by bclinton - 01-03-2015, 09:01 AM



Theme © iAndrew 2016 - Forum software by © MyBB