我正在尝试学习如何使用phpmail从邮件联系表单发送电子邮件。我必须包括'来自' phpmail函数在我的服务器上工作的字段。我想在最基本的层面上做这个,以帮助学习和添加像striptags sanistising函数等稍后的东西,到目前为止我有这个代码,但它到目前为止没有工作,任何想法和帮助非常感谢,艾玛: )
<html>
<body>
<form action="send.php" method="post">
First name: <input type="text" name="firstName"><br><br>
Last name: <input type="text" name="lastName"><br><br>
E-mail: <input type="text" name="email"><br><br>
<input type="submit">
</form>
</body>
</html>
而php就是这样:
<?php
$email_message = ($_POST['firstname'],);
$email_subject = ($_POST['lastname'],);
$email = ($_POST['email']);
$email_to = "emmajane1@hotmail.co.uk"; // your email address send TO
$email_from = "admin@emmajane.website"; // your email address send FROM
$email_subject = "Contact form message";
/* Send the message using mail() function */
mail($email_to, $email_subject, $email, $email_message, $headers);
?>
我没有看到一个按钮来回答我自己的问题,但是在最基本的层面上我得到了下面的这个脚本,现在我要逐层构建php脚本直到我到达了我想要的地方。
<?php
$to = 'emmajane@hotmail.co.uk';
$subject = 'the subject';
$headers = 'admin@emmajane.website';
$message = $_POST['firstname'];
mail($to, $subject, $message, $headers);
?>