简体   繁体   English

基本电子邮件表格(php)

[英]Basic email form (php)

I'm trying to send a basic email from a form using PHP. 我正在尝试使用PHP从表单发送基本电子邮件。 The form is validated using jquery.validate.js (which is working fine), but I can't get the email to send. 表单使用jquery.validate.js进行了验证(工作正常),但是我无法发送电子邮件。 I simply keep getting the php file that is declared in the action when I submit. 我只是不断获取提交时在操作中声明的php文件。

The site is here , the form looks like this: 该站点位于此处 ,表单如下所示:

    <form method="post" action="send-email.php" id="contact-form" class="form-horizontal" role="form">
      <fieldset> 

        <div class="col-12  col-md-6  col-lg-6  contact--left">
          <div class="form-group">
            <label for="name" class="col-12  control-label  brand  brand-font">Name</label>
            <div class="col-12">
              <input type="text" class="form-control  brand-font--standard" name="name" id="name">
            </div>
          </div>                  
          <div class="form-group">
            <label for="email" class="col-12  control-label  brand  brand-font">Email</label>
            <div class="col-12">
              <input type="email" class="form-control  brand-font--standard" name="email" id="email">
            </div>
          </div>
          <div class="form-group">
            <label for="phone" class="col-12  control-label  brand  brand-font">Telephone</label>
            <div class="col-12">
              <input type="tel" class="form-control  brand-font--standard" name="phone" id="phone">
            </div>
          </div>
        </div>

        <div class="col-12  col-md-offset-1  col-md-5  col-lg-offset-1  col-lg-5  contact--right">
          <div class="form-group">
            <label for="message" class="col-12  control-label  brand  brand-font">Message</label>
            <div class="col-12">
              <textarea class="form-control  brand-font--standard" rows="6" name="message" id="message"></textarea>
            </div>
          </div>
          <div class="form-group">
            <div class="col-12">&nbsp;</div>
            <div class="col-12">
              <button type="submit" class="btn  btn-block  btn--orange  brand-font">Submit</button>
            </div>
          </div>
        </div>

      </fieldset>
    </form>

...and the send-email.php file looks like this: ...,而send-email.php文件如下所示:

<?php
if(isset($_POST['email'])) {

    // EDIT THE 2 LINES BELOW AS REQUIRED
    $email_to = "contact@designbydarren.com";
    $email_subject = "Your email subject line";


    function died($error) {
        // your error code can go here
        echo "We are very sorry, but there were error(s) found with the form you submitted. ";
        echo "These errors appear below.<br /><br />";
        echo $error."<br /><br />";
        echo "Please go back and fix these errors.<br /><br />";
        die();
    }

    // validation expected data exists
    if(!isset($_POST['name']) ||
        !isset($_POST['email']) ||
        !isset($_POST['phone']) ||
        !isset($_POST['message'])) {
        died('We are sorry, but there appears to be a problem with the form you submitted.');       
    }

    $name = $_POST['name']; // required
    $email_from = $_POST['email']; // required
    $phone = $_POST['phone']; // required
    $message = $_POST['message']; // required

    $error_message = "";
    $email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
  if(!preg_match($email_exp,$email)) {
    $error_message .= 'The Email Address you entered does not appear to be valid.<br />';
  }
    $string_exp = "/^[A-Za-z .'-]+$/";
  if(!preg_match($string_exp,$name)) {
    $error_message .= 'The name you entered does not appear to be valid.<br />';
  }
  if(strlen($message) < 2) {
    $error_message .= 'The message you entered do not appear to be valid.<br />';
  }
  if(strlen($error_message) > 0) {
    died($error_message);
  }
    $email_message = "Form details below.\n\n";

    function clean_string($string) {
      $bad = array("content-type","bcc:","to:","cc:","href");
      return str_replace($bad,"",$string);
    }

    $email_message .= "Name: ".clean_string($name)."\n";
    $email_message .= "Email: ".clean_string($email_from)."\n";
    $email_message .= "Telephone: ".clean_string($phone)."\n";
    $email_message .= "Message: ".clean_string($message)."\n";


// create email headers
$headers = 'From: '.$email_from."\r\n".
'Reply-To: '.$email_from."\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);  
?>

<!-- include your own success html here -->

Thank you for contacting us. We will be in touch with you very soon.

<?php
}
?>

I've tried using a few other examples i've found on the web but not got anything to stick yet. 我试过使用其他一些我在网络上找到的示例,但还没有任何内容。 Apologies for the noob esque question but i'm more of a front-ender so have little idea about this type of thing (however basic it may seem to you guys) 为菜鸟式的问题而道歉,但我更像是一个前锋,所以对此类型的东西一无所知(但是,对于你们来说,这似乎很基本)

Thanks for your time! 谢谢你的时间!

You have to change the parameter in the following line of send-email.php 您必须在send-email.php的以下行中更改参数

if(!preg_match($email_exp,$email_from)){

As you had already taken $_POST['email'] in $email_from 因为您已经在$ email_from中提取了$ _POST ['email']

And while using default PHP mail function change your SMTP settings in php.ini file 并且在使用默认的PHP邮件功能时,更改php.ini文件中的SMTP设置

Hope it Helps!!! 希望能帮助到你!!!

You've defined the visitor's email address as follows: 您已按照以下步骤定义了访问者的电子邮件地址:

$email_from = $_POST['email']; // required

But in line 33, you're trying to use $email , which is undefined: 但在第33行中,您尝试使用$email ,它是未定义的:

if(!preg_match($email_exp,$email)) {

Change it to: 更改为:

if(!preg_match($email_exp,$email_from)) {

That should fix the issue, and your form should work. 那应该可以解决问题,并且您的表格也可以工作。

Unrelated sidenote: PHP's mail() function is a bad choice. 不相关的旁注:PHP的mail()函数是一个错误的选择。 I'd recommend switching to PHPMailer or SwiftMailer, as they give you better control and is more robust. 我建议切换到PHPMailer或SwiftMailer,因为它们可以为您提供更好的控制并且更强大。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM