PHP联系表单不发送电子邮件

时间:2013-06-04 23:43:42

标签: php html-email

我正在写信在我的网站上创建一个联系表单,然后将信息发送到我的收件箱,但它无法正常工作。请看下面的代码(PHP不是我的东西),让我知道我哪里出错了。

这是PHP脚本:

<?php

$to = 'example@gmail.com';
$name = $_POST['name'];
$email = $_POST['email'];
$message = $_POST['message'];
$tel = $_POST['tel'];
$project = $_POST['project'];
$range1 = $_POST['range1'];
$range2 = $_POST['range2'];

$body = <<<EMAIL

Hi, my name is $name.

I'd like to discuss the possibility of working together on a $project.

My budget for the project is £$range1 and I would like to complete the project within $range2 Month(s).

Additional Information:
$message

Regards, $name

<hr>
$name
$email
$tel

EMAIL;

$header = "From: $email";

if($_POST['send']){
mail($to, $subject, $body, $header);
$feedback = 'Thank you for your message, we will get back to you shortly.';
}

?>

这是HTML表单:

<form id="form_id" name="form_name" action="" method="post">

  <div>
<input type="text" name="name" id="name" placeholder="Name" required/>
  </div>
<div>
<input type="email" name="email" id="email" placeholder="Email" required/>
  </div>
<div>
<input type="tel" name="tel" id="tel" placeholder="Phone" required/>
  </div>

<div>
  <select required id="project">
<option selected>Select type of project…</option>
<option value="Responsive Website">Responsive Web Design</option>
<option value="Graphic Design">Graphic Design</option>
<option value="Motion Graphics">Motion Graphics</option>
  </select> 
</div>

  <div>
<label for="range1">Budget: </label>
<input type="range" name="range1" id="range1" min="400" max="2000" step="50" value="6" required onchange="rangevalue.value=value"><output id="rangevalue">400</output>
  </div>

<div>
<label for="range2">Timeframe: </label>
<input type="range" name="range2" id="range2" min="1" max="12" step=".5" value="1" required onchange="rangevalue1.value=value"><output id="rangevalue1">1</output>
  </div>

<div>
<label for="message">Additional Information: </label><br/>
<p>(Please use this space to tell us about your company, the main objectives of the proposed website and anything else you think might be useful)</p>
<textarea name="message" id="message" rows="5" cols="30" placeholder="Message" required></textarea>
  </div>

<div>
<input type="submit" name="submit" value="submit" />
  </div>

</form>
<p id="feedback"><?php echo $feedback; ?></p>

感谢您的帮助。仅供参考,这可以通过WordPress通过Contact Form 7(或类似的插件)轻松实现。

2 个答案:

答案 0 :(得分:1)

在你继续任何事情之前,我认为你应该看看thisthis,尽管W3Schools可以作为一个基础教程,因为友好的用户示例,总是与之相辅相成其他资源look here why

然后你可以看看这个答案,这只是因为你需要更多的基础来理解你正在做的一切。

我在表格中看不到您的$ _POST ['发送']名称,或者为时已晚,我累了:

不知道,但也许,您希望在提交之前在表单中填写此内容:

<input type="hidden" name="send" >

然后:

我已经发布了这个答案HERE,但现在是:

首先,我认为您缺少一些标题会查看

// To send HTML mail, the Content-type header must be set
$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

// Additional headers
$headers .= 'To: Mary <mary@example.com>, Kelly <kelly@example.com>' . "\r\n";
$headers .= 'From: Birthday Reminder <birthday@example.com>' . "\r\n";
$headers .= 'Cc: birthdayarchive@example.com' . "\r\n";
$headers .= 'Bcc: birthdaycheck@example.com' . "\r\n";

第二次检查调用邮件功能时是真还是假

if( mail($email_to, $email_subject, $email_message, $headers)!==true)
    {
        die('Fail to send');


    }
    die('Sucess');

    }

您应该看一下isset()函数,以确保从表单中设置所有变量。

答案 1 :(得分:1)

<input type="submit" name="submit" value="submit" />

您必须将此行更改为:

<input type="submit" name="send" value="submit" />



  if($_POST['send']){ 

实际检查是否点击了提交按钮...

而且,是的 - 如果html和php在不同的页面上,你必须设置正确的表单动作链接......

相关问题