You are here

function mailhandler_mailbox_load in Mailhandler 6.2

Same name and namespace in other branches
  1. 6 mailhandler.module \mailhandler_mailbox_load()
  2. 7.2 mailhandler.module \mailhandler_mailbox_load()
  3. 7 mailhandler.module \mailhandler_mailbox_load()

Load a mailbox.

Parameters

$mail: This mailbox's name value.

Return value

A mailbox object.

1 call to mailhandler_mailbox_load()
MailhandlerImportBatch::getRaw in plugins/feeds/plugins/MailhandlerFetcher.class.php
Implementation of FeedsImportBatch::getRaw();

File

./mailhandler.module, line 178
Retrieves email for posting as nodes and comments.

Code

function mailhandler_mailbox_load($mail) {
  ctools_include('export');
  return ctools_export_crud_load('mailhandler_mailbox', $mail);
}