The form is sent by pressing the button because we got to the "send_mail.php".
Would have to see what data is coming from the form.
Try adding the following lines at the beginning of the file "send_mail.php" (just for testing):
PHP Code:
echo "<p>Content POST:</p> ";
print_r($_POST);
echo "<p>Content REQUEST:</p> ";
print_r($_REQUEST);