1
ホスト(https://www.namecheap.com)に電子メールを送信できません。私はこのエラーを取得していますCodeIgniter
枠組みCodeIgniterとnamecaepを使用して電子メールを送信できません
$config = Array(
'protocol' => 'HTTP',// also used smtp
'smtp_host' => 'mail.sss.com.ng',
'smtp_port' => 26,
'smtp_user' => '[email protected]', // change it to yours
'smtp_pass' => '3333333', // change it to yours
'mailtype' => 'html',
'charset' => 'iso-8859-1',
'wordwrap' => TRUE
);
$this->load->library('email', $config);
$this->email->set_newline("\r\n");
$this->email->from('[email protected]'); // change it to yours
$this->email->to($to);// change it to yours
$this->email->subject($subject);
$this->email->message('6666');
if($this->email->send())
{
echo 'Email sent.';
}
else
{
show_error($this->email->print_debugger());
}
}
を使用:
error An Error Was Encountered
Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.
User-Agent: CodeIgniter