i tried to send the mail using codeigniter framework.but it will raise the error "Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.
From: "prakash t" <[email protected]>
Return-Path: <[email protected]>
Reply-To: "[email protected]" <[email protected]>
X-Sender: [email protected]
X-Mailer: CodeIgniter
X-Priority: 3 (Normal)
Message-ID: <[email protected]>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
=?UTF-8?Q?Test=20Mail?=
hai this my test mail
" but no use
here is mycode:
public function sendMail(){
$config = Array(
'protocol' => 'mail',
'smtp_host' => 'ssl://smtp.googlemail.com',
'smtp_port' => 587,
'smtp_user' => '[email protected]',
'smtp_pass' => '*********'
);
I know it's duplicate question.but i didn't find solution for my question
$this->load->library('email',$config);
$this->email->set_newline("\r\n");
$this->email->from('[email protected]','prakash t');
$this->email->to('[email protected]');
$this->email->subject('Test Mail');
$this->email->message('hai this my test mail');
if($this->email->send()){
echo "mail send succesfully";
}
else{
show_error($this->email->print_debugger());
}
}