Código PHP:
<?php
$file = "http://idrid185.byethost14.com/IDRIDTools/emails.txt";
$filehandle = fopen($file, "r");
// leer cada línea del archivo
while ( $correo = fgets($filehandle) ) {
$correo = preg_replace('/[\r\n]+/', '', $correo ); // quitar saltos de linea
// enviar correo a $correo
sleep(5);
$asunto = "IDRIDBlog Ready! Thank you!";
$mensaje .= "http://idrid-blog.blogspot.com/ \r\n";
$cabecera = 'From: IDRIDBlog <[email protected]>\r\n';
mail($correo,$asunto,$mensaje,$cabecera);
}
fclose($filehandle);
?>
http://idrid185.byethost14.com/IDRIDTools/send-alert.php
Este es el codigo pero el mensaje no llega.