1 頁 (共 1 頁)

Aug 21 14:35:16 postest postfix/sendmail[11649]: fatal: www-

發表於 : 2012-08-21 14:41:07
yehlu
原因是

mail header 無回信地址

代碼: 選擇全部

		//信件寄件人
		$mail_headers = 'Content-type: text/html; charset="utf-8"' . "\r\n";
		$mail_headers .= 'From: "Name" <yehlu@551.com.tw>' . "\r\n"; // 請自行替換寄件地址
        $mail_headers .= 'Reply-To: "Name" <yehlu@551.com.tw>'. "\r\n"; //Return bouned mails to.

		mail($store_data['mail'],
     	'=?UTF-8?B?'.base64_encode("主題").'?=',
     	$db->f('param_value'),
     	$mail_headers);