2012-11-23 64 views
1

正在嘗試使用此表單,因爲所有垃圾郵件都將到來。 有誰知道我可以如何使用這種相同的形式進行身份驗證?如何發送表單使用PHP進行身份驗證?

謝謝能幫助的人!

<?php 

    $para = "[email protected]"; 
    $assunto = "Orçamento"; 
    $headers = "MIME-Version: 1.0\n"; 
    $headers .= "Content-type: text/html; charset=iso-8859-1\n"; 
    $headers .= "From:Log Materiais <[email protected]>\r\n"; 
    $headers .= "Reply-To: ".$_POST['razaosocial_nome']." <".$_POST['email'].">\r\n"; 
    mail("[email protected]",$assunto,$corpo,$headers); 

    mail($_POST['email'],$assunto,$corpo,$headers); 
    unset($_SESSION['Carrinho']['Produto']); 
    unset($_SESSION['Carrinho']); 
?> 
<script> 
alert("Seu pedido de orçamento foi enviado, em 24 horas entraremos em contato, aguarde."); 
window.location = '../home/index.php?orcamento=Sucesso'; 
</script> 
+0

使用'CAPTCHA' - >'reCAPTCHA'來防止'SPAM'。 https://developers.google.com/recaptcha/docs/php,因此您需要http://www.google.com/recaptcha – Rafee

回答

相關問題