Buongiorno a tutti,
ho utillizzato un form mail in ajax e php. Il problema è che nella mail ricevo soltanto il testo del campo messaggio e non riesco ad inviare gli altri campi ( ragione, telefono, partita )
Qualcuno può aiutarmi a capire perché?
Grazie mille
ho utillizzato un form mail in ajax e php. Il problema è che nella mail ricevo soltanto il testo del campo messaggio e non riesco ad inviare gli altri campi ( ragione, telefono, partita )
Qualcuno può aiutarmi a capire perché?
Grazie mille
PHP:
// Clean up the input values
foreach($_POST as $key => $value) {
if(ini_get('magic_quotes_gpc'))
$_POST[$key] = stripslashes($_POST[$key]);
$_POST[$key] = htmlspecialchars(strip_tags($_POST[$key]));
}
// Assign the input values to variables for easy reference
$ragione = $_POST['ragione'];
$email = $_POST['email'];
$partitaiva = $_POST['partita'];
$telefono = $_POST['telefono'];
$message = $_POST['message'];
// Test input values for errors
$errors = array();
if(strlen($ragione) < 2) {
if(!$ragione) {
$errors[] = "Devi inserire la tua ragione sociale.";
} else {
$errors[] = "La ragione sociale deve essere minimo di 2 caratteri.";
}
}
if(!$email) {
$errors[] = "Devi inserire un'email.";
} else if(!validEmail($email)) {
$errors[] = "Devi inserire un'email valida.";
}
$errors = array();
if(strlen($partitaiva) < 11) {
if(!$ragione) {
$errors[] = "Devi inserire la tua partita iva.";
} else {
$errors[] = "La partita iva deve essere minimo 11 caratteri.";
}
}
if($errors) {
// Output errors and die with a failure message
$errortext = "";
foreach($errors as $error) {
$errortext .= "<li>".$error."</li>";
}
die("<span class='failure'>Spiacenti!<br />Ci sono stati problemi:<ul>". $errortext ."</ul>Riprova</span>");
}
// Send the email
$to = "[email protected]";
$subject = "Messaggio ricevuto da: $ragione";
$message = "$message";
$headers = "From: $email";
mail($to, $subject, $message, $headers);
// Die with a success message
die("<span class='success'>Complimenti!<br /><br /> Il tuo messaggio e' stato inviato correttamente!</span>");
// A function that checks to see if
// an email is valid
function validEmail($email)
{
$isValid = true;
$atIndex = strrpos($email, "@");
if (is_bool($atIndex) && !$atIndex)
{
$isValid = false;
}
else
{
$domain = substr($email, $atIndex+1);
$local = substr($email, 0, $atIndex);
$localLen = strlen($local);
$domainLen = strlen($domain);
if ($localLen < 1 || $localLen > 64)
{
// local part length exceeded
$isValid = false;
}
else if ($domainLen < 1 || $domainLen > 255)
{
// domain part length exceeded
$isValid = false;
}
else if ($local[0] == '.' || $local[$localLen-1] == '.')
{
// local part starts or ends with '.'
$isValid = false;
}
else if (preg_match('/\\.\\./', $local))
{
// local part has two consecutive dots
$isValid = false;
}
else if (!preg_match('/^[A-Za-z0-9\\-\\.]+$/', $domain))
{
// character not valid in domain part
$isValid = false;
}
else if (preg_match('/\\.\\./', $domain))
{
// domain part has two consecutive dots
$isValid = false;
}
else if(!preg_match('/^(\\\\.|[A-Za-z0-9!#%&`_=\\/$\'*+?^{}|~.-])+$/',
str_replace("\\\\","",$local)))
{
// character not valid in local part unless
// local part is quoted
if (!preg_match('/^"(\\\\"|[^"])+"$/',
str_replace("\\\\","",$local)))
{
$isValid = false;
}
}
if ($isValid && !(checkdnsrr($domain,"MX") || checkdnsrr($domain,"A")))
{
// domain not found in DNS
$isValid = false;
}
}
return $isValid;
}