Need some advice. I am playing around with Mailinator PHP API and I was wondering if it is possible to fetch message count from multiple inboxes of Mailinator. May be using an array of inboxnames? I have tried it with single inbox and it fetches fine but when I use array, It gives me message count of first inbox (In array) only. Below is the code i've tried for fetching single inbox.
include 'Mailinator.php';
$mailinator = new Mailinator('API_KEY_HERE');
$data = new Inbox();
$data = $mailinator->inbox(exampleinbox);
echo $data->count();
I am looking for something like this, but doesn't work!
include 'Mailinator.php';
$inboxes = array("inbox1", "inbox2", "inbox3");
$mailinator = new Mailinator('API_KEY_HERE');
$data = new Inbox();
$data = $mailinator->inbox($inboxes);
echo $data->count(0);
echo $data->count(1);
It would also be great if i can make an array from file.txt
Forgive me, I dont know Mailinator, but, if this code works
Then to get the same data from multiple inboxes why not simply do