我已经在
windows 8上安装了wamp.
@H_404_16@有错误:
Warning: mail() [function.mail]: Failed to connect to mailserver at
“localhost” port 25,verify your “SMTP” and “smtp_port” setting in
PHP.ini or use ini_set() in C:\wamp\www\mail.PHP on line 9
这里是简单的源代码:
<?PHP // The message $message = "Line 1\r\nLine 2\r\nLine 3"; // In case any of our lines are larger than 70 characters,we should use wordwrap() $message = wordwrap($message,70,"\r\n"); // Send mail('caffeinated@example.com','My Subject',$message); ?>