php如何实现表单中添的数据提交传到邮箱中
我要实现这样一个功能:就是PHP中如何实现在表单中添的数据,提交的时候要传到邮箱中。我用<?
$message="12346578";
mail("123@123.com", "没有主题", $message,123,236);
?>
这样的方法他说: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 E:\MyWeb\mailto.php on line 3
这样的错误,望上说:再php.ini中查找mail 有这么一部分:
[mail function]
; For Win32 only.
SMTP = localhost
smtp_port = 25
; For Win32 only.
sendmail_from = me@example.com
把SMTP = localhost
smtp_port = 25设置成我的实际的就可以了,但我不知道这个是什么意思。怎么改啊0!、
有么的人可以实现表单中添的数据提交传到邮箱中啊!!急!