Aah! see I've been looking for those additional parameters and they're nowhere on php.net, though you're right that in the documentation it does show that you can pass parameters on.
So the php loop for sending the mail would look like this?
while($a_eboxes = mysql_fetch_array($result))
{mail("$a_eboxes[email_address]", $subject, $msg_body, $mail_headers, -q);}
Oh, one more thing, is there a place on the net that has a list of these additional parameters? Reading through the user comments on php.net but no one makes a reference to a listing of these parameters.
Thanks again for all your help guys!
Ras.