我已经从net.i下载了一个联系人脚本(附带文件附件)我在wamp(pc)中运行它但是当我点击提交时显示此错误。你帮我解决了这个错误
警告:mail()[function.mail]:无法连接到“localhost”端口25的邮件服务器,验证php.ini中的“SMTP”和“smtp_port”设置或使用C:\ wamp中的ini_set()第38行\ www \ contact.php 致电S
你可以告诉我,下面的脚本是否有效,如果没有,你能建议一个好的联系表格与文件附件
<form action="" enctype="multipart/form-data" method="post">
<label for="name">Name:</label><br/>
<input type="text" id="name" name="name" /><br/>
<label for="email">Email address:</label><br/>
<input type="text" id="email" name="email" /><br/>
<label for="topic">Subject:</label><br/>
<input type="text" id="topic" name="topic" /><br/>
<input type="hidden" name="MAX_FILE_SIZE" value="100000" />
<label>Upload a Menu:</label>
<input type="file" name="file" size="20"><br>
<label for="comments">Your comments:</label><br/>
<textarea id="comments" name="comments" rows="5" cols="30"></textarea><br/>
<button name="submit" type="submit">Send</button>
</form>
<?php
if(isset($_POST['submit']))
{
// Pick up the form data and assign it to variables
$name = $_POST['name'];
$email = $_POST['email'];
$topic = $_POST['topic'];
$comments = $_POST['comments'];
// Build the email (replace the address in the $to section with your own)
$to = 'my@email.com';
$subject = "Contact: $topic";
$message = "$name said: $comments";
$headers = "From: $email";
// Send the mail using PHPs mail() function
mail($to, $subject, $message, $headers);
// Redirect
echo('<br> your mail has been send<br>');
}
?>
答案 0 :(得分:1)
代码没有任何问题,切换到不同的脚本也无济于事。
问题是您的计算机上没有运行邮件的邮件服务器。
答案 1 :(得分:1)
正如Dan Grossman所说,你的代码很好,而你得到的错误是SMTP设置。 我将尝试解释如何更正这些设置并设置localhost以使用您的Gmail(或任何其他外部SMTP服务器)发送电子邮件。
首先,您需要找到php.ini文件并设置sendmail_path,例如:
sendmail_path = "C:\wamp\sendmail\sendmail.exe -t -i"
在WAMP安装中的“Sendmail”文件夹中查找sendmail.ini
,并添加以下内容:
smtp_server=localhost
smtp_port=25
default_domain=gmail.com
auth_username=[yourgmailname]@gmail.com
auth_password=[yourgmailpassword]
重新启动您的服务器。现在它应该能够发送电子邮件了。
答案 2 :(得分:-1)
您的问题在于邮件功能,而不是提交表单。
获取有关更改php.ini的帮助