Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/banovvv/graphhelper
A collection of Microsoft Graph Helper methods related to MailFolders
https://github.com/banovvv/graphhelper
email-notification helper-methods microsoft microsoftgraph microsoftgraphapi nuget-package
Last synced: 22 days ago
JSON representation
A collection of Microsoft Graph Helper methods related to MailFolders
- Host: GitHub
- URL: https://github.com/banovvv/graphhelper
- Owner: Banovvv
- License: mit
- Created: 2022-02-01T11:48:58.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-03-29T08:09:23.000Z (over 2 years ago)
- Last Synced: 2024-11-09T16:26:52.832Z (about 1 month ago)
- Topics: email-notification, helper-methods, microsoft, microsoftgraph, microsoftgraphapi, nuget-package
- Language: C#
- Homepage:
- Size: 54.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# GraphHelper
## Summary
This project is a collection of extension methods that aim to provide simpler means of obtaining some of the most used Graph functionalities, mostly related to MailFolders## Status
[![NuGet Badge](https://buildstats.info/nuget/GraphHelper)](https://www.nuget.org/packages/GraphHelper/1.1.0)## Extension methods for Microsoft Graph types:
- MailFolder
```Csharp
GetMailFolderByName()
GetMailFolderByID()
GetMailFolderID()
```
- IMailFolderMessagesCollectionPage
```Csharp
GetInboxEmails()
GetSpecificFolderEmails()
```
- Message
```Csharp
SendExceptionEmail()
```
- GraphServiceClient
```Csharp
GetGraphClient()
```## Installation
**DISCLAIMER:** Plese note that this package is still under development and bugs may be present. If you spot a bug, please [open a new Issue](https://github.com/Banovvv/GraphHelper/issues/new)You can install the NuGet library into your project using:
Package Manager:
```
Install-Package GraphHelper -Version 1.1.0
```.NET CLI:
```
dotnet add package GraphHelper --version 1.1.0
```## License
Copyright © 2022 Ivan Gechev.This package has an MIT license. Refer to the [LICENSE](https://github.com/Banovvv/GraphHelper/blob/e2ca6eb3f858a887a7141b9442957cf6c76aaf3f/LICENSE) for detailed information.
## Questions, comments or additions
If you have a feature request or bug report, [open a new Issue](https://github.com/Banovvv/GraphHelper/issues/new) or [send a Pull request](https://github.com/Banovvv/GraphHelper/pulls).