public function MailhandlerImportBatch::__construct in Mailhandler 6.2
Constructor.
Overrides FeedsImportBatch::__construct
File
- plugins/
feeds/ plugins/ MailhandlerFetcher.class.php, line 18 - Checks for new messages in a mailbox (IMAP, POP3, etc...).
Class
- MailhandlerImportBatch
- Definition of the import batch object needed by MailhandlerFetcher.
Code
public function __construct($mailbox_name, $filter) {
parent::__construct();
$this->mailbox_name = $mailbox_name;
$this->filter = $filter;
}