I have the script below:
<?php
include("connectdb.inc.php");
$mailarrayquery="select email from outwarinfo";
$mailarray=mysql_query($mailarrayquery);
while ($row=mysql_fetch_array($mailarray) )
{
$mailuser=$row["email"];
mail( $mailuser,"Outlink Update","Outlink Update, Dear Outlink Member - Outlink has now been updated !! Visit us at [url]http://outlink.coolfreepage.com[/url]") or die ("Could not send email to user $mailuser");
}
?>
and my php.ini file says:
[mail function]
; For Win32 only.
SMTP = smtp.ntlworld.com
; For Win32 only.
sendmail_from = outlink@hotmail.com
I have not recieved any email through although it did not give me any problems. How long does it normally take?