Código PHP:
//mensajes cantidad
$between_delay = 1;
//segundos entre
$send_delay = 1;
echo "Iniciando...<br>";
for ( $sent=0; $a = mysql_fetch_array($res); $sent++ ) {
if ( ($sent % $between_delay) == 0 )
sleep( $send_delay );
$estadistica = '<img src="http://XXXXXXXX/estadistica.php?&id_correo='.$id_correo.'" width="0" height="0" />';
// esto es una prueba para remplazar por emdio de eiquetas y hacerlo personalizado
$mensaje2 = str_replace("[nombre]",$a["nombre"],$mensaje);
$mensaje3 = str_replace("[apellido]",$a["apellido"],$mensaje2);
//$mensaje4 = str_replace("[estadistica]",$estadistica,$mensaje3);
$mensaje5 = str_replace("[empresa]",$a["empresa"],$mensaje3);
$mail->AddAddress($a["correo"]);
$body = $mensaje5.$estadistica;
$mail->IsHTML(true);
$mail->Subject = $asunto;
$mail->Body = $body;
$mail->MessageID = $id_correo;
$exito = $mail->Send();
if($exito) {
echo $a["correo"] . "ok <br>";
}else{
echo $a["correo"] . "error <br>";
}
$mail->ClearAddresses();
$contador++;
}
muchas gracias por alguna opinion