さくらインターネット / malformed header from script ‘XXXXXXXX’: Bad header: <>... User unknown


2025年03月19日


さくらインターネット / malformed header from script ‘XXXXXXXX’: Bad header: <>... User unknown

mail_send関数において、ヘッダー設定で、Bccが空で[Internal Server Error]エラーが発生していた。


Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator at [no address given] to inform them of the time this error occurred, and the actions you performed just before this error.

More information about this error may be available in the server error log.


 

error_logをみると下記

malformed header from script 'XXXXX.php': Bad header: <>... User unknown


 

検証

$mail_headers = "From: <" . $mail_from . ">\r\n";
$mail_headers .= "Bcc: <" . $mail_bcc . ">\r\n";
$mail_headers .= "Reply-To: <" . $mail_reply . ">\r\n";

Bccが空だと、[Internal Server Error]エラーになる。
FromやReply-Toは空でも[Internal Server Error]エラーにならない。


Archive