bellow code was working for other project of my but When I upload this to server then its not working can any one please help me out to resolved this issue.
I had created one helper file for send email
$ci =& get_instance();
$config = Array(
'mailtype' => 'html',
'charset' => 'iso-8859-1',
'validate' => TRUE ,
'newline' => "\r\n",
'wordwrap' => TRUE
);
$ci->load->library('email');
$ci->email->initialize($config);
$ci->email->from($fromemail, $fromname);
$ci->email->reply_to(APPLICATION_EMAIL, SITENAME);
$ci->email->to($toemail);
$template_msg=str_replace($replace_array,$new_array,$tempmsg);
$ci->email->subject(sprintf($subject, $data['site_name']));
$ci->email->message($template_msg);
$ci->email->send();