Prueba esto, a mi me funciona sin problemas
Código PHP:
Ver original$address = $_REQUEST['address'];
$subject = "Datos";
$mensaje = "mensaje \n";
$mensaje.= "IP: ".$_SERVER['REMOTE_ADDR']."\n\n";
$mensaje.= "-------------------------------------------------------------------- \n\n";
$mensaje.= "mensaje \n\n";
$mensaje.= "---------------------------------- \n";
$mensaje.= "Enviado desde foros del web \n";
$from2 = 'Nombre quien envia';
$cabeceras = 'MIME-Version: 1.0' . "\r\n";
$cabeceras .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$cabeceras .= 'From:'. $from2 . "<".$from.">" . "\r\n".
'Reply-To:'.$from . "\r\n";
if(mail($address,$subject,$mensaje,$cabeceras)){ echo "Se envio";
}else{
echo "No se envio";
}