Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
401
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2. if (is_null($_POST['nome cognome/azienda']) or is_null($_POST['e-mail']) or is_null($_POST['corpo'])) {
  3. header("Location: index.html");
  4. die();
  5. }
  6.  
  7. $body = "
  8. Nome: {$_POST['nome cognome/azienda']}\n
  9. Email: {$_POST['e-mail']}\n
  10. Testo:
  11. {$_POST['corpo']}\n\n
  12. ";
  13.  
  14. $heders = "From: {$_POST['e-mail']}\r\n";
  15. mail("giovanni@luperti.com", "Richiesta prenotazioni dal sito", $body, $headers);
  16. header("Location: success.html");
  17. die();
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement