He cambiado el wait.php quitando el sleep y ahora me sale el siguiente error en el navegador :
Gateway Time-out
The gateway did not receive a timely response from the upstream server or application.
el wait.php ahora es
[code]
<?php
$fecha = date('Y-m-j H:i:s');
echo '<br>'.$fecha;
// $nuevafecha = strtotime ( '+1 hour' , strtotime ( $fecha ) ) ;
$nuevafecha = strtotime ( '+13 minute' , strtotime ( $fecha ) ) ;
//$nuevafecha = strtotime ( '+60 second' , strtotime ( $fecha ) ) ;
$nuevafecha = date ('Y-m-j H:i:s' , $nuevafecha );
echo '<br>'.$nuevafecha;
echo '<br>';
$continuar=true;
$i=0;
while ($continuar) {
// echo '<br>'.$i++;
// echo ob_flush();
if (strtotime(date('Y-m-j H:i:s'))>strtotime($nuevafecha)) $continuar=false;
}
echo 'fin';
// El mensaje
$mensaje = "Fecha inicio:".$fecha.'---Fecha fin:'.$nuevafecha;
$mensaje = wordwrap($mensaje, 70, "\r\n");
mail('micorreo@dominio.es', 'Mi título', $mensaje.'...'.$i);
?>
¿Como puedo hacerlo? Gracias[/code]