Naprise¶ Naprise is a .NET library that allows you to easily send notifications to popular messaging services like Telegram, Discord, and more. Naprise is heavily inspired by Apprise. Quick Start¶ Link to NuGet: https://www.nuget.org/packages/Naprise dotnet add package Naprise # or Install-Package Naprise var notifier = Naprise.Create("discord://106943697/YGCTVYbXQ7_pTEv-f3jX3e"); await notifier.NotifyAsync(new Message { Type = MessageType.Success, Title = "Hello from Naprise!", Markdown = "**This** is a _test_ message. :heart:", });