Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/cdhunt/outlookcli

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

Last synced: 8 days 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 "[email protected]"}) | Send-MailForward [email protected]

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
```