jamesiarmes / php-ews

PHP Exchange Web Services
http://jamesarmes.com/php-ews/
MIT License
566 stars 304 forks source link

How to set message importance #546

Closed justbaron closed 5 years ago

justbaron commented 5 years ago

Version (e.g. 1.0, dev-master): "dev-master": "1.0.x-dev" PHP version: 7.3.1 Microsoft Exchange version: VERSION_2013_SP1

Description of problem: How can I set the importance of a message? I cannot find any examples anywhere.

Thanks in advance

justbaron commented 5 years ago

Solved:

# Set importance
$message->Importance = new ImportanceChoicesType();
$message->Importance = ImportanceChoicesType::HIGH;