Advertisement
evtcps

Enviar email

Apr 26th, 2018
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <?
  2. if($_POST['send']==1)
  3. {
  4. $fr="From: $adminemail";
  5. $content_email=$_POST['to']." / From: ".$_POST['from_name'].", ".$_POST['from_email'].". Menssagem: ".$_POST['message'];
  6. if(@mail($adminemail, 'Contact us message', $content_email, $fr))
  7. {
  8. echo "<p><font color=#FFF>Agradecemos seu contato. Enviaremos uma resposta em breve</font></p>";
  9. exit;
  10. }else{
  11. echo "<p>Obrigado!</p>";exit;
  12. }
  13. }
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement