【发布时间】:2010-08-17 04:35:04
【问题描述】:
电子邮件脚本 -
$subject = "[New Order] " . $_SESSION['orderId'];
$email = $shopConfig['email'];
$message = "You have a new order. Check the order detail here \n http://" . $_SERVER['HTTP_HOST'] . WEB_ROOT . 'admin/order/index.php?view=detail&oid=' . $_SESSION['orderId'] ;
mail($email, $subject, $message, "From: $email\r\nReturn-path: $email"); //line 20th
警告:mail() [function.mail]:SMTP 服务器响应:553 抱歉,在 D:\Hosting\6448289\html\ 中从您的位置 [173.201.196.177] (#5.7.1) 拒绝中继products\success.php 第 20 行
为什么会抛出这样的错误?
【问题讨论】: