Warning: mail() [function.mail]: SMTP server response: 553 We do not relay non-local mail, sorry
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: The following script sends email using mail function . But i am unable to send an email.Upon clicking submit this gets displayed : Warning: mail() [function.mail]: SMTP server response: 553 We do not relay non-local mail, sorry. in E:\xampp\htdocs\feedback.php on line 19 mail sent successfully SCRIPT <?php if( isset( $_REQUEST['email'] ) ) { $email = $_REQUEST['email']; $subject = $_REQUEST['subject']; $message = $_REQUEST['message']; mail("me@gmail.com" , $subject , $message , "From:".$email ); echo "mail sent successfully"; } else { echo "