2010-07-24 72 views
0

非常感謝以前的幫助。 現在另一個在這裏。 這是我嘗試運行代碼時的響應。郵寄問題

<h3>copy of this order has been emailed to you for your records.</h3> 
<?php echo $html_body; 
//send email 
$headers = array(); 
$headers[]= 'MIME-Versioon: 1.0'; 
$headers[] = 'Content-type: text/html;charset="iso-8859-1"'; 
$headers[] = 'Content-Transfer-Encoding: 7bit'; 
$headers[] = 'From: <[email protected]>'; 
$headers[] ='Bcc: <[email protected]>'; 
mail($email,"OrderConformation",$html_head.$html_body,join("\r\n",$headers)); 

警告:郵件()[function.mail]:SMTP服務器響應:550 5.7.1無法在C繼電器[email protected]:\ XAMPP \ htdocs中\花\上線checkout3.php 388

底線是,我不知道如何配置服務器是有用的PHP腳本。我使用xampp開發這個應用程序。

+0

你的郵件服務器配置不正確,用php – ina 2010-07-24 09:19:46

+0

那麼怎麼配置呢? – 2010-07-24 09:31:58

回答

2

您正在使用您的Gmail地址作爲傳出地址。

這是行不通的,如果確實如此,你的郵件就會被任何體面的垃圾郵件過濾器所捕獲。

您需要在運行PHP腳本的域上指定有效的發件人地址。

+0

actully我檢查腳本是否正常工作。當它提供有效的域名時它會工作。 – 2010-07-24 09:40:03

+0

@pri只有一種方法可以找到答案。 – 2010-07-24 09:59:38

+0

ñ這是什麼? – 2010-07-24 10:14:55