http://xoomer.virgilio.it/cadmir/prova.html

Provaci tu... a me rimane la scritta SENDIG... e da li non si schioda
Non so proprio cosa fare... ti posto il codice PHP:

send_email.php

Codice PHP:
<?php
$contact_name 
$_POST['name'];
$contact_email $_POST['email'];
$contact_subject $_POST['subject'];
$contact_message $_POST['message'];

if( 
$contact_name == true )
{
    
$sender $contact_email;
    
$receiver "cadmir@libero.it";
    
$client_ip $_SERVER['REMOTE_ADDR'];
    
$email_body "Name: $contact_name \nEmail: $sender \nSubject: $contact_subject \nMessage: $contact_message \nIP: $client_ip \nFlash Contact Form provided by [url]http://www.flashmo.com[/url]";        
    
$extra "From: $sender\r\n" "Reply-To: $sender \r\n" "X-Mailer: PHP/" phpversion();

    if( 
mail$receiver"Flash Contact Form - $contact_subject"$email_body$extra ) ) 
    {
        echo 
"success=yes";
    }
    else
    {
        echo 
"success=no";
    }
}
?>

send_email_auto_response.php

Codice PHP:
<?php
$contact_name 
$_POST['name'];
$contact_email $_POST['email'];
$contact_subject $_POST['subject'];
$contact_message $_POST['message'];

if( 
$contact_name == true )
{
    
$sender $contact_email;
    
$receiver "cadmir@libero.it";
    
$client_ip $_SERVER['REMOTE_ADDR'];
    
    
$email_body "Name: $contact_name \nEmail: $sender \nSubject: $contact_subject \nMessage: $contact_message \nIP: $client_ip \nFlash Contact Form provided by [url]http://www.flashmo.com[/url]";
    
$email_body_auto_reply "Hello $contact_name, \nThis is the auto reply message. Thank you. \nAdmin - [url]http://www.flashmo.com[/url]";
    
    
$extra "From: $sender\r\n" "Reply-To: $sender \r\n" "X-Mailer: PHP/" phpversion();
    
$extra_auto_reply "From: $receiver\r\n" "Reply-To: $receiver \r\n" "X-Mailer: PHP/" phpversion();
    
    
mail$sender"Auto Reply - Re: $contact_subject"$email_body_auto_reply$extra_auto_reply );    // auto reply mail to sender

    
if( mail$receiver"Flash Contact Form - $contact_subject"$email_body$extra ) )
    {
        echo 
"success=yes";
    }
    else
    {
        echo 
"success=no";
    }
}
?>