Html电子邮件表单不发送邮件

时间:2016-01-28 22:36:58

标签: php html email

你好,我的网站结尾我有这个表格:

 
<section class="contact" id="contact">
    <h1>Contact</h1>
    <hr/>       

    <div class="content">

      <div class="form">

        <form action="#" method="post" enctype="text/plain">

        <input name="your-name" id="your-name" value="Numele Tau" />
        <input name="your-email" id="your-email" value="Adresa de E-mail sau Telefon" />

        <textarea id="message" name="message" >Mesajul Tau</textarea>

        <a href="#">
          <div class="button">
            <span>SEND</span>
          </div>
        </a> 

        </form>

      </div>

我想知道如何使用所有信息向某个邮件发送电子邮件?

谢谢,对不起我的英文,

1 个答案:

答案 0 :(得分:1)

创建一个名为sendmail.php的单独PHP文件。将开始<form>标记更改为以下内容:

<form action="sendmail.php" method="post">

以下是sendmail.php的基本代码:

<?php
    $message = $_POST['your-name'] . ' Sent the following message at ' . date('d-m-Y H:i') . '. Their email is ' . $_POST['your-email'] . '. ' . $_POST['message'];
    mail('adminemail@site.com', 'New contact form', $message);
?>