Codice PHP:
<?php
// L'INDIRIZZO DEL DESTINATARIO DELLA MAIL
$to = "marcotorre@altervista.org";
// IL SOGGETTO DELLA MAIL
$subject = "Amori segreti";
// COSTRUZIONE DEL CORPO DEL MESSAGGIO
$body = "Contenuto del modulo:\n\n";
$body .= "Ecco il forum compilato" . trim(stripslashes($_POST["spazio"])) . "\n";
$body .= "" . trim(stripslashes($_POST["spazio"])) . "\n";
$body .= "" . trim(stripslashes($_POST["spazio"])) . "\n";
$body .= "" . trim(stripslashes($_POST["spazio"])) . "\n";
$body .= "Nome: " . trim(stripslashes($_POST["nome"])) . "\n";
$body .= "" . trim(stripslashes($_POST["spazio"])) . "\n";
$body .= "Cognome: " . trim(stripslashes($_POST["cognome"])) . "\n";
$body .= "" . trim(stripslashes($_POST["spazio"])) . "\n";
$body .= "Sesso: " . trim(stripslashes($_POST["sesso"])) . "\n";
$body .= "" . trim(stripslashes($_POST["spazio"])) . "\n";
$body .= "Prima persona: " . trim(stripslashes($_POST["partner"])) . "\n";
$body .= "" . trim(stripslashes($_POST["spazio"])) . "\n";
$body .= "Seconda persona: " . trim(stripslashes($_POST["partner2"])) . "\n";
$body .= "" . trim(stripslashes($_POST["spazio"])) . "\n";
$body .= "Terza persona: " . trim(stripslashes($_POST["partner3"])) . "\n";
$body .= "" . trim(stripslashes($_POST["spazio"])) . "\n";
$body .= "Da quanto tempo conosce la prima persona: " . trim(stripslashes($_POST["tempo"])) . "\n";
$body .= "" . trim(stripslashes($_POST["spazio"])) . "\n";
$body .= "Che rapporto c'è? " . trim(stripslashes($_POST["rapporti"])) . "\n";
// INTESTAZIONI SUPPLEMENTARI
$headers = "From: Amori segreti>";
// INVIO DELLA MAIL
if(@mail($to, $subject, $body, $headers)) { // SE L'INOLTRO E' ANDATO A BUON FINE...
echo "Complimenti l'elaborazione è stata completata clicca sul pulsante per visualizzare i risultati<BR><BR>
<center><a href=http://marcotorre.altervista.org/percentuale.html>Visualizza i RISULTATI</a></center>
<BR><BR><BR><center><img src=http://www.rce.it/CarmineEbay/Immagini/cuori.jpg></center><br><br>
Grazie per aver utilizzato il nostro servizio";
} else {// ALTRIMENTI...
echo "Si sono verificati dei problemi nell’elaborazione.";
}
?>