????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.55 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/bin/vendor/vgrem/php-spo/src/OutlookServices/ |
Upload File : |
<?php
/**
* This file was generated by phpSPO model generator 2020-04-25T20:41:49+00:00 16.0.20008.12009
*/
namespace Office365\OutlookServices;
use Office365\Runtime\ClientValue;
use Office365\Runtime\Actions\InvokePostMethodQuery;
use Office365\Runtime\ResourcePath;
use Office365\Runtime\Actions\UpdateEntityQuery;
/**
* A message in a mailbox folder.
*/
class Message extends Item
{
/**
* Reply to the sender of a message by specifying a comment and using the Reply method.
* @param string $comment
*/
public function reply($comment)
{
$parameter = new ClientValue();
$parameter->setProperty("Comment", $comment);
$qry = new InvokePostMethodQuery($this, "Reply", null, null, $parameter);
$this->getContext()->addQuery($qry);
}
/**
* Reply to the sender of a message by specifying a comment and using the Reply method.
* @param string $comment
*/
public function replyAll($comment)
{
$parameter = new ClientValue();
$parameter->setProperty("Comment", $comment);
$qry = new InvokePostMethodQuery($this, "ReplyAll", null, null, $parameter);
$this->getContext()->addQuery($qry);
}
/**
* Forward a message by using the Forward method and optionally specifying a comment.
* @param string $comment
* @param array $toRecipients
*/
public function forward($comment, $toRecipients)
{
$parameter = array();
$parameter["Comment"] = $comment;
$parameter["ToRecipients"] = $toRecipients;
$qry = new InvokePostMethodQuery($this, "Forward", null, null, $parameter);
$this->getContext()->addQuery($qry);
}
/**
* Move a message to a folder. This creates a new copy of the message in the destination folder.
* @param string $destinationId The destination folder ID, or the Inbox, Drafts, SentItems, or
* DeletedItems well-known folder name.
*/
public function move($destinationId)
{
$parameter = new ClientValue();
$parameter->setProperty("DestinationId", $destinationId);
$qry = new InvokePostMethodQuery($this, "Move", null, null, $parameter);
$this->getContext()->addQuery($qry);
}
/**
* Marks a message as read/unread
* @param bool $isRead whether or not the message is read
*/
public function read($isRead)
{
$this->setProperty("IsRead", $isRead);
$qry = new UpdateEntityQuery($this);
$this->getContext()->addQuery($qry);
}
/**
* Marks a message as important/unimportant
* @param int $importance importance level (1,2,3)
*/
public function important($importance)
{
$this->setProperty("Importance", $importance);
$qry = new UpdateEntityQuery($this);
$this->getContext()->addQuery($qry);
}
/**
* @param $attachmentType
* @return Attachment
*/
public function addAttachment($attachmentType)
{
$attachment = new $attachmentType($this->getContext());
$this->Attachments[] = $attachment;
return $attachment;
}
/**
* The FileAttachment and ItemAttachment attachments for the message.
* @var array
*/
public $Attachments;
/**
* The Bcc recipients for the message.
* @var array
*/
public $BccRecipients;
/**
* The body of the message.
* @var ItemBody
*/
public $Body;
/**
* The first 255 characters of the message body content.
* @var string
*/
public $BodyPreview;
/**
* The categories associated with the message.
* @var array
*/
public $Categories;
/**
* The subject of the message.
* @var string
*/
public $Subject;
/**
* The Cc recipients for the message.
* @var array
*/
public $CcRecipients;
/**
* The To recipients for the message.
* @var array
*/
public $ToRecipients;
/**
* The ID of the conversation the email belongs to.
* @var string
*/
public $ConversationId;
/**
* Indicates whether the message has attachments.
* @var bool
*/
public $HasAttachments;
/**
* The mailbox owner and sender of the message.
* @var Recipient
*/
public $From;
/**
* The importance of the message
* @var string
*/
public $Importance;
/**
* The classification of this message for the user,
* based on inferred relevance or importance, or on an explicit override.
* @var int
*/
public $InferenceClassification;
/**
* The account that is actually used to generate the message.
* @var Recipient
*/
public $Sender;
/**
* Indicates whether the message is a draft. A message is a draft if it hasn't been sent yet.
* @var bool
*/
public $IsDraft;
/**
* Indicates whether a read receipt is requested for the message.
* @var bool
*/
public $IsReadReceiptRequested;
/**
* Indicates whether a read receipt is requested for the message.
* @var bool
*/
public $IsDeliveryReceiptRequested;
/**
* The email addresses to use when replying.
* @var array
*/
public $ReplyTo;
/**
* The URL to open the message in Outlook Web App.
* @var string
*/
public $WebLink;
/**
* The collection of open type data extensions defined for the message. Navigation property.
* @var array
*/
public $Extensions;
/**
* @return ItemBody
*/
public function getBody()
{
if (!$this->isPropertyAvailable("Body")) {
return null;
}
return $this->getProperty("Body");
}
/**
* @var ItemBody
*/
public function setBody($value)
{
$this->setProperty("Body", $value, true);
}
/**
* @var string
*/
public $ParentFolderId;
/**
* @return Recipient
*/
public function getSender()
{
if (!$this->isPropertyAvailable("Sender")) {
return null;
}
return $this->getProperty("Sender");
}
/**
* @var Recipient
*/
public function setSender($value)
{
$this->setProperty("Sender", $value, true);
}
/**
* @return Recipient
*/
public function getFrom()
{
if (!$this->isPropertyAvailable("From")) {
return null;
}
return $this->getProperty("From");
}
/**
* @var Recipient
*/
public function setFrom($value)
{
$this->setProperty("From", $value, true);
}
/**
* @return ItemBody
*/
public function getUniqueBody()
{
if (!$this->isPropertyAvailable("UniqueBody")) {
return null;
}
return $this->getProperty("UniqueBody");
}
/**
* @var ItemBody
*/
public function setUniqueBody($value)
{
$this->setProperty("UniqueBody", $value, true);
}
/**
* @var bool
*/
public $IsRead;
/**
* @return AttachmentCollection
*/
public function getAttachments()
{
if (!$this->isPropertyAvailable("Attachments")) {
$this->setProperty("Attachments", new AttachmentCollection($this->getContext(),
new ResourcePath("Attachments", $this->getResourcePath())));
}
return $this->getProperty("Attachments");
}
}