0
我有我的項目的一部分,當我的客戶將重置郵件後,如此多的行動,當我測試我的郵件功能,我有問題時,地址是「Gmail」,我重新發送郵件,但是當郵件沒有Gmail時,郵件沒有被重新發送! :(這是我的郵件功能:PHP郵件不工作,沒有Gmail郵箱地址
function emailDemande($email, $name, $nameL){
$subject = 'Votre demande ';
$headers = "From: XXX <[email protected]>\r\n";
$headers .= "Bcc: [email protected], [email protected]\r\n";
// $headers = 'From: XXX <'. $from. '>\r\n';
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=UTF-8\r\n";
$message='htmlmessage';
mail($email, $subject, $message, $headers);
};
請任何幫助!
那麼'mail()'返回true?如果是這樣,那不是PHP問題。 –