电子邮件php脚本不会发送电子邮件

时间:2018-07-07 08:32:30

标签: php html email html-email

我无法使邮件php脚本正常工作,我可能不明白为什么,因为我已经在Internet上查找了它,但是找不到正确的解决方案(对此有点陌生)

如果我运行脚本,它将始终进入最后一个脚本,否则如果出现错误,请重试。

以下是脚本:

<?php


 $siteOwnersEmail = 'test@gmail.be';


if($_POST) {

$name = trim(stripslashes($_POST['contactName']));
$email = trim(stripslashes($_POST['contactEmail']));
$subject = trim(stripslashes($_POST['contactSubject']));
$contact_message = trim(stripslashes($_POST['contactMessage']));

// Check Name
if (strlen($name) < 2) {
    $error['name'] = "Please enter your name.";
}
// Check Email
if (!preg_match('/^[a-z0-9&\'\.\-_\+]+@[a-z0-9\-]+\.([a-z0-9\-]+\.)*+[a-z]{2}/is', $email)) {
    $error['email'] = "Please enter a valid email address.";
}
// Check Message
if (strlen($contact_message) < 15) {
    $error['message'] = "Please enter your message. It should have at least 15 characters.";
}
// Subject
if ($subject == '') { $subject = "Contact Form Submission"; }


// Set Message
$message .= "Email from: " . $name . "<br />";
$message .= "Email address: " . $email . "<br />";
$message .= "Message: <br />";
$message .= $contact_message;
$message .= "<br /> ----- <br /> This email was sent from your site's contact form. <br />";

// Set From: header
$from =  $name . " <" . $email . ">";

// Email Headers
$headers = "From: " . $from . "\r\n";
$headers .= "Reply-To: ". $email . "\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";


 if (isset($error)) {

    $response = (isset($error['name'])) ? $error['name'] . "<br /> \n" : null;
    $response .= (isset($error['email'])) ? $error['email'] . "<br /> \n" : null;
    $response .= (isset($error['message'])) ? $error['message'] . "<br />" : null;

    echo $response;


} # end if - there was a validation error
else {


  ini_set("sendmail_from", $siteOwnersEmail); // for windows server
  $mail = mail($siteOwnersEmail, $subject, $message, $headers);

    if ($mail) { echo "OK"; }
  else { echo "Something went wrong. Please try again."; }

} # end if - no validation error

}

}

?>

最后但并非最不重要的提交表单

<form name="contactForm" id="contactForm"  action="inc/sendEmail.php" method="post" >
                <fieldset>

                <div class="form-field">
                    <input name="contactName" type="text" id="contactName" placeholder="Naam" value="" minlength="2" required="" aria-required="true" class="full-width">
                </div>
                <div class="form-field">
                    <input name="contactEmail" type="email" id="contactEmail" placeholder="Email" value="" required="" aria-required="true" class="full-width">
                </div>
                <div class="form-field">
                    <input name="contactSubject" type="text" id="contactSubject" placeholder="Onderwerp" value="" class="full-width">
                </div>
                <div class="form-field">
                    <textarea name="contactMessage" id="contactMessage" placeholder="Uw vraag" rows="10" cols="50" required="" aria-required="true" class="full-width"></textarea>
                </div>
                <div class="form-field">
                    <button class="full-width btn--primary">Submit</button>
                    <div class="submit-loader">
                        <div class="text-loader">Sending...</div>
                        <div class="s-loader">
                            <div class="bounce1"></div>
                            <div class="bounce2"></div>
                            <div class="bounce3"></div>
                        </div>
                    </div>
                </div>

                </fieldset>
            </form>

1 个答案:

答案 0 :(得分:0)

使用此代码发送有效的邮件

    <?php
$malil = 'example@example.com';
$to = $malil;

$subject = "Your order has been placed.";

$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=ISO-8859-1' . "\r\n";   

$headers .= "From: example@example.com" . "\r\n" ;
/* $headers .= "Cc:reservations@bookingsmaker.com,bookingsmakerdotcom@gmail.com,bookingsmakerworld@gmail.com "."\r\n";
*/
$headers .="Cc:example@example.com,example@example.in";

////////////////***********Html format*****************//////////////////
$htmlContent = 'Content';

$result=mail($to,$subject,$htmlContent,$headers);
  if($result){
      echo 'mail Send';
  }else{
      echo 'Mail not send';
  }
  ?>