在按钮事件上以html格式发送电子邮件

时间:2014-02-04 05:21:37

标签: html

我正在使用以下HTML:

<div>
    <form method="post" action="mailto:hr@kine.com" >
        <input type="submit" value="Send Email" /> 
    </form>
</div>

但是,当我尝试加载页面时,出现以下错误:

  

未找到网址

的网页

为什么会发生这种情况,我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

尝试以下代码,使用php&amp; HTML

<div>
        <form method="post">
                  <input type="submit" name='submit' value="Send Email" /> 
        </form>
</div>

    <?php

    if(isset($POST['submit']){
        $to = 'hr@kine.com';

        $subject = 'Website Change Reqest';

        $headers = "From: test@example.com\r\n";
        $headers .= "Reply-To: test@example.com\r\n";
        $headers .= "MIME-Version: 1.0\r\n";

        $headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";


        $message = 'Test Email';
        $message .= '<h1>Hello, World!</h1>';


        mail($to, $subject, $message, $headers);

    }
?>

我希望它可以帮到你。