I am trying to add a text messaging system to the alert functions in bids.php.
I think I can just add an instance of my own mailer in the file, but I would like to know the nature of the variable that it takes as it's first argument.
i see this:
$auction->SendMails($watches,'alert_bin_accepted');
$auction->SendMails(array($owner_user),'new_bid_auto_bin');
The second parameter makes sense to me. Is the first parameter user id's?
Thank you