I having an odd issue when using the mail() function. I would like to send to multiple recipients and according to what I have read you simple seperate the addresses with a comma like this...
$recipients = 'john@johnallan.ca,john2@johnallan.ca';
mail($recipients, 'multitest', 'testing123');
Instead what I get is the same mail sent twice to the second address. If I add a third I get three sent to the third address.
This doesn't seem right to me.. any ideas?
This is on PHP 4.0.6
Thx