Hi,
I'm using the mail() function to send out newsletters to subscribers,
problem is that it seems a little unreliable...
at the moment I assemble the mail outside a loop then iterate through
all the mail addresses
for($i=0;$i<$nu maddresses;$i++ ){
mail($to[$i],$subj,$message ,$fromstr);
}
should i be putting in a delay message or a retry_on_fail method or
anything?
Martin
I'm using the mail() function to send out newsletters to subscribers,
problem is that it seems a little unreliable...
at the moment I assemble the mail outside a loop then iterate through
all the mail addresses
for($i=0;$i<$nu maddresses;$i++ ){
mail($to[$i],$subj,$message ,$fromstr);
}
should i be putting in a delay message or a retry_on_fail method or
anything?
Martin
Comment