method getMailbox documentation in bbn\User\Email
function(string $id_account)
{
if (!isset($this->mboxes[$id_account])) {
$this->getAccount($id_account);
}
if (isset($this->mboxes[$id_account])) {
$mb = &$this->mboxes[$id_account];
if (!isset($mb['mailbox'])) {
$cfg = $this->mboxes[$id_account];
$cfg['pass'] = $this->_get_password()->userGet($id_account, $this->user);
$mb['mailbox'] = new Mailbox($cfg);
}
if (isset($mb['mailbox'])) {
return $mb['mailbox'];
}
}
return null;
}
BBN is a suite of PHP and JS libraries and VueJS components - all open-source! bbn.io, build applications, the quick way
This website uses cookies to ensure you get the best experience on our website.
© 2011-2025
BBN Solutions