-1
A PHP Error was encountered
Severity: Warning
Message: mail() [function.mail]: Bad parameters to mail() function, mail not sent.
Filename: libraries/Email.php
Line Number: 1519
は私のメールスクリプト(私のコントローラの一部)である:
$message = "...text...";
$this->load->library('email');
$this->email->from('[email protected]', 'OEM Sales');
$this->email->to('[email protected]');
$this->email->subject('Contact Page Request');
$this->email->message($message);
$this->email->send();
ライン1519は、電子メールが送信される行。ここで何が起こっているのですか?
解決済み:回答が見つかりました:http://codeignitertips.blogspot.com/。それはGoDaddyの問題でした。
この問題に対するこの問題の解決策は、こちらを参照してください。 http://stackoverflow.com/questions/8350865/malformed-email-subject-header-when-subject-75-chars-using-codeigniter-email -l/30919390#30919390 –