hola chicos, pues eso, tengo un formulario pero no hay manera de que me llegue, deciros que lo ando usando de forma local osea localhost , y uso el xampp con el mercury mail ya configurado, aqui os dejo el codigo a ver si me podeis indicar alguna cosa, eso si deciros que antes me funcionaba no se que pudo pasar
    
Código HTML:
Ver original- <script type="text/javascript"> 
- function MM_validateForm() { //v4.0 
-   if (document.getElementById){ 
-     var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments; 
-     for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=document.getElementById(args[i]); 
-       if (val) { nm=val.name; if ((val=val.value)!="") { 
-         if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@'); 
-           if (p<1 || p==(val.length-1)) errors+='- '+nm+' must contain an e-mail address.\n'; 
-         } else if (test!='R') { num = parseFloat(val); 
-           if (isNaN(val)) errors+='- '+nm+' must contain a number.\n'; 
-           if (test.indexOf('inRange') != -1) { p=test.indexOf(':'); 
-             min=test.substring(8,p); max=test.substring(p+1); 
-             if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n'; 
-       } } } else if (test.charAt(0) == 'R') errors += '- '+nm+' es requerido.\n'; } 
-     } if (errors) alert('ha ocurrido un error:\n'+errors); 
-     document.MM_returnValue = (errors == ''); 
- } } 
-   
- <body style="background-color:#00cc66; color: #FFF;"> 
- <table width="455" height="449" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#CCCCCC" bgcolor="#CCCCCC"> 
-     <th width="451" height="447" scope="col">- EL CONSEGUIDOR 
 
-   
- <table width="412" cellspacing="0" align="center" bgcolor="#009966"> 
-     <th width="408" height="401" scope="col"><input type="hidden" name="form" value="form" /> <form action="recibido1.php" method="POST"> 
-   <input name="nombre" type="text" id="nombre" /> 
-     E-mail:       
-     <input name="mail" type="text" id="mail" onblur="MM_validateForm('mail','','RisEmail');return document.MM_returnValue" /> 
-     Poblacion : 
-     <input type="text" name="poblacion" /> 
-   <input type="text" name="telefono" /> 
-        <p><input type="reset" value="Borrar" /> 
-     <input type="submit" onclick="MM_validateForm('mail','','RisEmail');MM_validateForm('nombre','','R','mail','','RisEmail');return document.MM_returnValue"> 
-       <div align="left">- * Campo obligatorio 
 
-   
y aqui el codigo PHP    
Código PHP:
Ver original- <?php 
-   
-  echo " Nombre:". $_POST['nombre']; 
-  echo "<br>"; 
-  echo "E-mail:". $_POST['mail']; 
-  echo "<br>"; 
-  echo "Poblacion:".$_POST['poblacion']; 
-  echo "<br>"; 
-  echo "Telefono:".$_POST['telefono']; 
-  echo "<br>"; 
-  echo "Mensaje:".$_POST['mensaje']; 
-  $header = 'From: ' . $mail . " \r\n"; 
- $header .= "X-Mailer: PHP/" . phpversion() . " \r\n"; 
- $header .= "Mime-Version: 1.0 \r\n"; 
- $header .= "Content-Type: text/plain"; 
-   
- $mensaje = "Este mensaje fue enviado por: " . $_POST['nombre'] . ",  " . $empresa . " \r\n"; 
- $mensaje .= "Su e-mail es: " . $_POST['mail'] . " \r\n"; 
- $mensaje .= "Telefono: " . $_POST['telefono'] . " \r\n"; 
- $mensaje .= "Poblacion: " . $_POST['poblacion'] . " \r\n"; 
- $mensaje .= "Mensaje: " . $_POST['mensaje'] . " \r\n"; 
- $mensaje .= "Enviado el " . date('d/m/Y', time()); 
-   
- $asunto = 'Contacto desde el conseguidor'; 
-   
-   
- echo 'mensaje enviado , muchas gracias'; 
-   
-   
-   ?>