mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 19:04:52 +00:00
Reintroduce Webklex IMAP for ticket processing as PHP-IMAP is no longer being developed. This is optional for now and considered beta can be found in cron/ticket_email_parser.php
This commit is contained in:
51
plugins/vendor/webklex/php-imap/examples/custom_message_mask.php
vendored
Normal file
51
plugins/vendor/webklex/php-imap/examples/custom_message_mask.php
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
<?php
|
||||
/*
|
||||
* File: custom_message_mask.php
|
||||
* Category: Example
|
||||
* Author: M.Goldenbaum
|
||||
* Created: 14.03.19 18:47
|
||||
* Updated: -
|
||||
*
|
||||
* Description:
|
||||
* -
|
||||
*/
|
||||
|
||||
class CustomMessageMask extends \Webklex\PHPIMAP\Support\Masks\MessageMask {
|
||||
|
||||
/**
|
||||
* New custom method which can be called through a mask
|
||||
* @return string
|
||||
*/
|
||||
public function token(): string {
|
||||
return implode('-', [$this->message_id, $this->uid, $this->message_no]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get number of message attachments
|
||||
* @return integer
|
||||
*/
|
||||
public function getAttachmentCount(): int {
|
||||
return $this->getAttachments()->count();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
$cm = new \Webklex\PHPIMAP\ClientManager('path/to/config/imap.php');
|
||||
|
||||
/** @var \Webklex\PHPIMAP\Client $client */
|
||||
$client = $cm->account('default');
|
||||
$client->connect();
|
||||
|
||||
/** @var \Webklex\PHPIMAP\Folder $folder */
|
||||
$folder = $client->getFolder('INBOX');
|
||||
|
||||
/** @var \Webklex\PHPIMAP\Message $message */
|
||||
$message = $folder->query()->limit(1)->get()->first();
|
||||
|
||||
/** @var CustomMessageMask $masked_message */
|
||||
$masked_message = $message->mask(CustomMessageMask::class);
|
||||
|
||||
echo 'Token for uid [' . $masked_message->uid . ']: ' . $masked_message->token() . ' @atms:' . $masked_message->getAttachmentCount();
|
||||
|
||||
$masked_message->setFlag('seen');
|
||||
|
||||
Reference in New Issue
Block a user