An open API service indexing awesome lists of open source software.

https://github.com/cdhunt/outlookcli

A PowerShell CLI for MAPI
https://github.com/cdhunt/outlookcli

Last synced: 12 months ago
JSON representation

A PowerShell CLI for MAPI

Awesome Lists containing this project

README

          

# OutlookCLI
A PowerShell CLI for MAPI

## Examples

```powershell
PS mail:\Inbox> $messages = Get-ChildItem
PS mail:\Inbox> $messages.Where({$_.SenderEmailAddress -eq "importantsencer@yourdomain.co"}) | Send-MailForward someemail@mydomain.me

PS mail:\Inbox> $messages = Get-ChildItem
PS mail:\Inbox> $messages.Where({$_.Subject -eq "Alert closed"}) | Set-MailRead

PS mail:\Inbox> $messages.Where({$_.Subject -eq "Alert Open"}) | Set-MailTask -Interval Today
```