你好只需要在gmail上发送消息。表单提交应该使用 jQuery 来实现。我想我不能将数据从 jquery 传递到 php。没有 jquery 文件的消息正在 gmail 上发送,但是当我在 html 上包含 jquery 时,它说消息已成功发送,但 gmail 上没有任何显示这是主要的 PHP 文件<?phprequire 'Sendmail.php';?><!doctype html><html><head> <title>Contact Us</title></head><body><section> <h1>Contact Form</h1> <form action="" method="POST"> <label>Firstname</label> <input type="text" name="firstname" id="firstname"> <label>Lastname</label> <input type="text" name="lastname" id="lastname"> <label>Email</label> <input type="text" name="email" id="email"> <label>Subject</label> <input type="text" name="subject" id="subject"> <label>message</label> <textarea name="message" id="message"></textarea> <a href="index.php">Sign Up</a> <button type="submit" id="button" name="submit" value="Send message">Send message</button> </form></section><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script><script src="https://cdn.jsdelivr.net/npm/sweetalert2@8"></script><script type="text/javascript" src="ContactValidation.js"></script></body></html>这是在 gmail 上发送消息的 PHP 文件<?phperror_reporting(0);$firstname = $_POST['firstname'];$lastname = $_POST['lastname'];$email = $_POST['email'];$sub = $_POST['subject'];$message = $_POST['message'];if (isset($_POST['submit'])){ $to = 'g_chkuaseli@cu.edu.ge'; $subject = "Subject: " . $sub ; $subject2 = "Copy of your subject: " . $sub; $message = $firstname . $lastname . " wrote the following message: \n\n" . $message; $message2 = "Copy of the message: " . $message; $headers = "From: " .$email; $headers2= "From: " . $to; mail($to,$subject,$message,$headers); mail($email,$subject2,$message2,$headers2);}echo "Email sent! Thank you " . $firstname . ", We will contact you shortly.";
2 回答
翻翻过去那场雪
TA贡献2065条经验 获得超14个赞
正如@BlackXero 所提到的,您正在进行以下检查:
if (isset($_POST['submit']))
这通常在您直接从 html 或 php 向 Sendmail.php 提交表单时使用。所以在这种情况下你不需要那个检查。
同样在此示例中,由于您为表单添加了方法和操作属性,您的表单仍在尝试提交某处。在这种情况下,您可以(可能应该)删除它们并将e.preventDefault()
加到按钮单击功能的开头。
- 2 回答
- 0 关注
- 131 浏览
添加回答
举报
0/150
提交
取消