You are here

function mailhandler_get_mailbox in Mailhandler 6

Same name and namespace in other branches
  1. 5 mailhandler.module \mailhandler_get_mailbox()
  2. 7 mailhandler.module \mailhandler_get_mailbox()

(DEPRECATED) Fetch data for a specific mailbox from the database.

To be removed once it is not in use by other module. Currently this is just a wrapper around mailhandler_mailbox_load(). The only know usage for now is in mail_comment module.

Related topics

File

./mailhandler.module, line 1467
Mailhandler module code.

Code

function mailhandler_get_mailbox($mid) {
  mailhandler_watchdog_deprecated();
  return mailhandler_mailbox_load($mid);
}