“Your message did not reach some or all of the intended recipients.   Sent: Tue, 12 Mar 2013 11:26:55 +0000
   Subject: Feedback Form ResultsThe following recipient(s) could not be reached:[email protected]
   Error Type: SMTP
   Remote server (220.181.14.146) issued an error.
   hMailServer sent: MAIL FROM:<[email protected]>
   Remote server replied: 553 Requested action not taken: no smtp MX only,mx19,RcCowEC521zZED9RTxeFAg--.1204S2 1363087577hMailServer” 这个是发送到我163邮箱上的。<form method="post" action="email.php">
Email: <input name="email" id="email" type="text" /><br />
Message:<br />
<textarea name="message" id="message" rows="15" cols="40"></textarea><br />
<input type="submit" value="Submit" />
</form><?php
 
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ; 
// here we use the php mail function
// to send an email to:
// [email protected]
mail( "[email protected]", "Feedback Form Results",$message, "From: $email" );
?>我用的是我用的hmailserver  应该怎么解决phpemail

解决方案 »

  1.   

    楼主说的hmailserver没用过,所以帮你顶一下。另外我推荐用phpmailer这个很好用,而且文档,实例很多。
      

  2.   

    挺多空间对mail()函数不太支持的,hMailServer得先弄清楚对mail()函数支不支持。要想成功率高就用phpmailer,用smtp发信。
      

  3.   

    应该支持 但是我不知道怎么配置 使用总是提示需要严重 不知道怎么解决而且 我按照网上说的用了phpmailer 还是无法发生 有成熟而且相对详细的案例吗?
      

  4.   

    mail 函数没有提供填写用户名和口令的参数
    所以他只能用于不需要用户登录的场合所有开源的 email 工具,本身就附带有详细的使用说明