我正在使用AJAX联系表单,但它不发送邮件。我尝试了很多东西,但我真的不知道问题是什么。
<!-- START CONTACT FORM -->
<div id="contact_form" class="grid_6" style="margin:0;">
<div class="form-success">
<p>Ju falemnderit, mesazhi juaj eshte derguar!</p>
</div>
<div class="contact-form">
<form action="contact-form/send.php" method="post" class="form">
<label>Emri dhe mbiemri</label>
<input class="text" type="text" name="name">
<label>E-Mail</label>
<input class="text" type="text" name="email">
<!--
<label>Subject</label>
<input class="text" type="text" name="subject">
-->
<label>Koment</label>
<textarea name="message" rows="8" cols="60"></textarea>
<a href="javascript:;" id="submit" class="button">Dergo Email</a>
<div class="loading"></div>
</form>
</div>
</div>
<!-- END CONTACT FORM -->
这是contact-form / send.php
<?php
//Your e-mail address goes here:
$to = "lorentsh@hotmail.com";
//
//Retrieve form data.
//GET - user submitted data using AJAX
//POST - in case user does not support javascript, we'll use POST instead
$name = ($_GET['name']) ? $_GET['name'] : $_POST['name'];
$email = ($_GET['email']) ?$_GET['email'] : $_POST['email'];
$subject = ($_GET['subject']) ?$_GET['subject'] : $_POST['subject'];
$comment = ($_GET['comment']) ?$_GET['comment'] : $_POST['message'];
//flag to indicate which method it uses. If POST set it to 1
if ($_POST) $post=1;
//Include email validator
require 'email-validator.php';
$validator = new EmailAddressValidator();
//Simple server side validation for POST data, of course, you should validate the email
if (!$name) $errors[count($errors)] = 'Please enter your name.';
if (!$email) $errors[count($errors)] = 'Please enter your email.';
if (!$comment) $errors[count($errors)] = 'Please enter your comment.';
$email = strip_tags($email);
if (!$validator->check_email_address($email)) {
$errors[count($errors)] = 'Invalid email address.';
}
//if the errors array is empty, send the mail
if (!$errors) {
//sender
$from = $name . ' <' . $email . '>';
//Structure of the message:
$subject = 'Message from ' . $name;
$message = '
<!DOCTYPE html>
<head></head>
<body>
<table>
<tr><td>Name:</td><td>' . $name . '</td></tr>
<tr><td>Email:</td><td>' . $email . '</td></tr>
<tr><td>Subject:</td><td>' . $subject . '</td></tr>
<tr><td>Message:</td><td>' . nl2br($comment) . '</td></tr>
</table>
</body>
</html>';
//End of the message structure
//send the mail
$result = sendmail($to, $subject, $message, $from);
//if POST was used, display the message straight away
if ($_POST) {
if ($result) echo 'Thank you! We have received your message.';
else echo 'Sorry, unexpected error. Please try again later';
//else if GET was used, return the boolean value so that
//ajax script can react accordingly
//1 means success, 0 means failed
} else {
echo $result;
}
//if the errors array has values
} else {
//display the errors message
for ($i=0; $i<count($errors); $i++) echo $errors[$i] . '<br/>';
echo '<a href="../contact.html">Back</a>';
exit;
}
//Simple mail function with HTML header
function sendmail($to, $subject, $message, $from) {
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n";
$headers .= 'From: ' . $from . "\r\n";
$result = mail($to,$subject,$message,$headers);
if ($result) return 1;
else return 0;
}
?>
你能告诉我问题出在哪里吗?至index.html或send.php。我需要你们的帮助。
答案 0 :(得分:0)
这不是AJAX,只是HTML和PHP。
要使其有效,您需要提交表格;只需在表单中添加这样的按钮:
<input type="submit" value="Dergo Email">
应该替换以下行:
<a href="javascript:;" id="submit" class="button">Dergo Email</a>
答案 1 :(得分:0)
问题应该在行
<a href="javascript:;" id="submit" class="button">Dergo Email</a>
你需要像按钮一样用
提交表单type="submit"
另外请确保您的托管服务支持PHP。
您也可以参考 Not receiving the mail。
我测试了它,请看下面的截图。
附上了代码。
send.php
<?php
//Your e-mail address goes here:
$to = "lorentsh@hotmail.com";
//
//Retrieve form data.
//GET - user submitted data using AJAX
//POST - in case user does not support javascript, we'll use POST instead
$name = ($_GET['name']) ? $_GET['name'] : $_POST['name'];
$email = ($_GET['email']) ?$_GET['email'] : $_POST['email'];
$subject = ($_GET['subject']) ?$_GET['subject'] : $_POST['subject'];
$comment = ($_GET['comment']) ?$_GET['comment'] : $_POST['message'];
//flag to indicate which method it uses. If POST set it to 1
if ($_POST) $post=1;
//Simple server side validation for POST data, of course, you should validate the email
if (!$name) $errors[count($errors)] = 'Please enter your name.';
if (!$email) $errors[count($errors)] = 'Please enter your email.';
if (!$comment) $errors[count($errors)] = 'Please enter your comment.';
$email = strip_tags($email);
//if the errors array is empty, send the mail
if (true) {
//sender
$from = $name . ' <' . $email . '>';
//Structure of the message:
$subject = 'Message from ' . $name;
$message = '
<!DOCTYPE html>
<head></head>
<body>
<table>
<tr><td>Name:</td><td>' . $name . '</td></tr>
<tr><td>Email:</td><td>' . $email . '</td></tr>
<tr><td>Subject:</td><td>' . $subject . '</td></tr>
<tr><td>Message:</td><td>' . nl2br($comment) . '</td></tr>
</table>
</body>
</html>';
//End of the message structure
//send the mail
$result = sendmail($to, $subject, $message, $from);
//if POST was used, display the message straight away
if ($_POST) {
if ($result) echo 'Thank you! We have received your message.';
else echo 'Sorry, unexpected error. Please try again later';
//else if GET was used, return the boolean value so that
//ajax script can react accordingly
//1 means success, 0 means failed
} else {
echo $result;
}
//if the errors array has values
} else {
//display the errors message
for ($i=0; $i<count($errors); $i++) echo $errors[$i] . '<br/>';
echo '<a href="../contact.html">Back</a>';
exit;
}
//Simple mail function with HTML header
function sendmail($to, $subject, $message, $from) {
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n";
$headers .= 'From: ' . $from . "\r\n";
$result = mail($to,$subject,$message,$headers);
if ($result) return 1;
else return 0;
}
?>
HTML文件
<!-- START CONTACT FORM -->
<div id="contact_form" class="grid_6" style="margin:0;">
<div class="form-success">
<p>Ju falemnderit, mesazhi juaj eshte derguar!</p>
</div>
<div class="contact-form">
<form action="contact-form/send.php" method="post" class="form">
<label>Emri dhe mbiemri</label>
<input class="text" type="text" name="name">
<label>E-Mail</label>
<input class="text" type="text" name="email">
<!--
<label>Subject</label>
<input class="text" type="text" name="subject">
-->
<label>Koment</label>
<textarea name="message" rows="8" cols="60"></textarea>
<button class="submit" id="submit" type="submit">Dergo Email</button>
<div class="loading"></div>
</form>
</div>
</div>
<!-- END CONTACT FORM -->
因此,正如我所说,可能是因为您的免费托管服务器不支持。
您可能希望自己在http://goo.gl/ynTnE进行测试,我会在那里保留几天。