Ecosyste.ms: Awesome
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: 8 days ago
JSON representation
A PowerShell CLI for MAPI
- Host: GitHub
- URL: https://github.com/cdhunt/outlookcli
- Owner: cdhunt
- License: mit
- Created: 2015-11-01T19:26:45.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-18T20:38:24.000Z (almost 9 years ago)
- Last Synced: 2023-03-23T02:56:22.418Z (over 1 year ago)
- Language: PowerShell
- Size: 6.84 KB
- Stars: 9
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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-MailReadPS mail:\Inbox> $messages.Where({$_.Subject -eq "Alert Open"}) | Set-MailTask -Interval Today
```