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: 4 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 3 years ago)
- Default Branch: main
- Last Pushed: 2026-02-13T16:10:33.000Z (5 months ago)
- Last Synced: 2026-02-13T17:52:10.299Z (5 months ago)
- Topics: exchange, office365, sendgrid, smtp
- Language: C#
- Homepage:
- Size: 257 KB
- Stars: 3
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
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:
10.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.