2

codeigniter でメールを送信するために次のコードを使用しています

$this->load->library('email');
$this->email->set_mailtype('html');
$this->email->from('test@example.com', 'Your Name');
$this->email->to('test2@example.com'); 

$this->email->subject('Email Test');
$this->email->message('Testing the email class.');  

$this->email->send();

echo $this->email->print_debugger();

ここで私はエラーを取得しています

Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.

しかし、メールの種類がテキストに変更された場合、つまり

$this->email->set_mailtype('text');

正常に動作します。なぜそうなのですか?

4

2 に答える 2

0

email.php ファイルが必要です。

$config['protocol'] = 'sendmail';
$config['mailpath'] = '/usr/sbin/sendmail';
$config['charset'] = 'iso-8859-1';
$config['wordwrap'] = TRUE;

参照、この URL: http://www.ciboard.co.kr/user_guide/en/libraries/email.html

于 2017-05-21T09:49:52.750 に答える