https://github.com/onebeyond/onebeyond-studio-email-providers
email delivery provider libraries for obelisk
https://github.com/onebeyond/onebeyond-studio-email-providers
exchange office365 sendgrid smtp
Last synced: about 2 months ago
JSON representation
email delivery provider libraries for obelisk
- Host: GitHub
- URL: https://github.com/onebeyond/onebeyond-studio-email-providers
- Owner: onebeyond
- License: mit
- Created: 2022-12-15T09:57:52.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-10T11:40:13.000Z (5 months ago)
- Last Synced: 2025-04-12T01:15:01.063Z (about 2 months ago)
- Topics: exchange, office365, sendgrid, smtp
- Language: C#
- Homepage:
- Size: 248 KB
- Stars: 3
- Watchers: 6
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://www.nuget.org/packages/OneBeyond.Studio.EmailProviders.Domain)
[](https://www.nuget.org/packages/OneBeyond.Studio.EmailProviders.Domain)
[](LICENSE)
[](https://codeclimate.com/github/onebeyond/onebeyond-studio-email-providers/maintainability)
[](https://codeclimate.com/github/onebeyond/onebeyond-studio-email-providers/test_coverage)# Introduction
On Beyond Studio Email Providers is a set of .NET libraries that helps you to abstract send e-mail logic in your application.
At this moment, we support the following types of e-mail providers:
- [Folder](https://www.nuget.org/packages/OneBeyond.Studio.EmailProviders.Folder)
- [SendGrid](https://www.nuget.org/packages/OneBeyond.Studio.EmailProviders.SendGrid)
- [SMTP](https://www.nuget.org/packages/OneBeyond.Studio.EmailProviders.Smtp)
- [Graph](https://www.nuget.org/packages/OneBeyond.Studio.EmailProviders.Graph)
- [Office365](https://www.nuget.org/packages/OneBeyond.Studio.EmailProviders.Office365)
- [Exchange](https://www.nuget.org/packages/OneBeyond.Studio.EmailProviders.Exchange)### Supported .NET version:
7.0
### Installation
The library that contains IEmailSender abstraction:
`dotnet new install OneBeyond.Studio.EmailProviders.Domain`
Libraries that contain particular implementation of IEmailSender (depending on your needs):
`dotnet new install OneBeyond.Studio.EmailProviders.Folder`
`dotnet new install OneBeyond.Studio.EmailProviders.SendGrid`
`dotnet new install OneBeyond.Studio.EmailProviders.Smtp`
`dotnet new install OneBeyond.Studio.EmailProviders.Graph`
`dotnet new install OneBeyond.Studio.EmailProviders.Office365`
`dotnet new install OneBeyond.Studio.EmailProviders.Exchange`
### Documentation
For more detailed documentation, please refer to our [Wiki](https://github.com/onebeyond/onebeyond-studio-email-providers/wiki)
### Contributing
If you want to contribute, we are currently accepting PRs and/or proposals/discussions in the issue tracker.