Shiny.Extensions.Mail.Abstractions 2.0.0-preview-0036

Prefix Reserved
This is a prerelease version of Shiny.Extensions.Mail.Abstractions.
dotnet add package Shiny.Extensions.Mail.Abstractions --version 2.0.0-preview-0036
                    
NuGet\Install-Package Shiny.Extensions.Mail.Abstractions -Version 2.0.0-preview-0036
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Shiny.Extensions.Mail.Abstractions" Version="2.0.0-preview-0036" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Shiny.Extensions.Mail.Abstractions" Version="2.0.0-preview-0036" />
                    
Directory.Packages.props
<PackageReference Include="Shiny.Extensions.Mail.Abstractions" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Shiny.Extensions.Mail.Abstractions --version 2.0.0-preview-0036
                    
#r "nuget: Shiny.Extensions.Mail.Abstractions, 2.0.0-preview-0036"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Shiny.Extensions.Mail.Abstractions&version=2.0.0-preview-0036&prerelease
                    
Install Shiny.Extensions.Mail.Abstractions as a Cake Addin
#tool nuget:?package=Shiny.Extensions.Mail.Abstractions&version=2.0.0-preview-0036&prerelease
                    
Install Shiny.Extensions.Mail.Abstractions as a Cake Tool

SHINY SERVICE EXTENSIONS FOR .NET

<img src="https://github.com/shinyorg/shiny/raw/master/art/logo.png" width="100" />

FEATURES

  • Push Notification Management without a 3rd Party (think Azure Notification Hubs for your on-prem servers)
  • Mail Templating On Steroids! Loaders, parsers, converters, & senders!

SUPPORT SHINY

While Shiny is free and will continue to be so, maintenance and support takes a heavy toll on sustainability. If you or your company have the resources, please consider becoming a GitHub Sponsor. GitHub Sponsorships help to make Open Source Development more sustainable.

Depending on your Sponsorship Tier, you may also get access to some great benefits on Sponsor Connect (https://sponsorconnect.dev) including:

  • The Sponsor Only Discord server
  • Training available ONLY to sponsors on Sponsor Connect
  • Special sponsor-only packages

https://sponsor.shinylib.net

How about some Shiny Gear

SQL Server Table Scripts

Mail

SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

CREATE TABLE [dbo].[MailTemplates](
	[MailTemplateId] [uniqueidentifier] NOT NULL,
	[TemplateName] [nvarchar](255) NOT NULL,
	[CultureCode] [varchar](5) NULL,
	[Content] [nvarchar](max) NOT NULL,
 CONSTRAINT [PK_MailTemplates] PRIMARY KEY CLUSTERED
(
	[MailTemplateId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY],
 CONSTRAINT [UK_MailTemplates] UNIQUE NONCLUSTERED
(
	[TemplateName] ASC,
	[CultureCode] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO

Push

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[PushRegistrations](
	[PushRegistrationId] [uniqueidentifier] NOT NULL,
	[Platform] [int] NOT NULL,
	[DeviceToken] [varchar](512) NOT NULL,
	[UserId] [varchar](50) NULL,
	[DateUpdated] [datetimeoffset](7) NOT NULL,
	[DateCreated] [datetimeoffset](7) NOT NULL,
 CONSTRAINT [PK_PushRegistrations] PRIMARY KEY CLUSTERED
(
	[PushRegistrationId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY],
 CONSTRAINT [UK_PushRegistrations] UNIQUE NONCLUSTERED
(
	[DeviceToken] ASC,
	[Platform] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object:  Table [dbo].[PushTags]    Script Date: 12/16/2021 3:27:13 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[PushTags](
	[PushTagId] [uniqueidentifier] NOT NULL,
	[PushRegistrationId] [uniqueidentifier] NOT NULL,
	[Value] [nvarchar](50) NOT NULL,
 CONSTRAINT [PK_PushTags] PRIMARY KEY CLUSTERED
(
	[PushTagId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY],
 CONSTRAINT [UK_PushTags] UNIQUE NONCLUSTERED
(
	[PushRegistrationId] ASC,
	[Value] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[PushTags]  WITH CHECK ADD  CONSTRAINT [FK_PushTags_PushRegistrations] FOREIGN KEY([PushRegistrationId])
REFERENCES [dbo].[PushRegistrations] ([PushRegistrationId])
GO
ALTER TABLE [dbo].[PushTags] CHECK CONSTRAINT [FK_PushTags_PushRegistrations]
GO
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Shiny.Extensions.Mail.Abstractions:

Package Downloads
Shiny.Extensions.Mail.StorageNet

A Mail template loader for use by Shiny.Extensions.Mail. By using Storage.NET, you can load templates up from nearly any blob provider you can think of

Shiny.Extensions.Mail

The ultimate email template engine with template parsing, loading, and sending all in one beautiful abstraction - provides razor templates, file system loading, smtp sending, and sendgrid providers out of the box

Shiny.Extensions.Mail.DotLiquid

Shiny.Extensions.Mail dotliquid template parser

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0-preview-0036 191 10/19/2024 2.0.0-preview-0036 is deprecated because it is no longer maintained.
2.0.0-preview-0034 180 8/7/2024 2.0.0-preview-0034 is deprecated because it is no longer maintained.
2.0.0-preview-0029 161 5/19/2024 2.0.0-preview-0029 is deprecated because it is no longer maintained.
2.0.0-preview-0027 148 5/16/2024 2.0.0-preview-0027 is deprecated because it is no longer maintained.
2.0.0-preview-0025 144 5/16/2024 2.0.0-preview-0025 is deprecated because it is no longer maintained.
2.0.0-preview-0024 151 5/15/2024 2.0.0-preview-0024 is deprecated because it is no longer maintained.
2.0.0-preview-0021 129 5/14/2024 2.0.0-preview-0021 is deprecated because it is no longer maintained.
2.0.0-preview-0019 123 5/10/2024 2.0.0-preview-0019 is deprecated because it is no longer maintained.
2.0.0-preview-0018 136 5/10/2024 2.0.0-preview-0018 is deprecated because it is no longer maintained.
2.0.0-preview-0014 252 1/9/2024 2.0.0-preview-0014 is deprecated because it is no longer maintained.
2.0.0-preview-0013 278 11/27/2023 2.0.0-preview-0013 is deprecated because it is no longer maintained.
2.0.0-preview-0009 424 8/5/2023 2.0.0-preview-0009 is deprecated because it is no longer maintained.
2.0.0-preview-0005 458 3/23/2023 2.0.0-preview-0005 is deprecated because it is no longer maintained.
2.0.0-preview-0001 410 3/22/2023 2.0.0-preview-0001 is deprecated because it is no longer maintained.
1.3.0-preview-0027 818 4/25/2022 1.3.0-preview-0027 is deprecated because it is no longer maintained.
1.3.0-preview-0002 677 4/4/2022 1.3.0-preview-0002 is deprecated because it is no longer maintained.
1.3.0-preview-0001 685 4/5/2022 1.3.0-preview-0001 is deprecated because it is no longer maintained.
1.3.0-g2ba43447db 669 4/25/2022 1.3.0-g2ba43447db is deprecated because it is no longer maintained.
1.3.0-alpha.2 172 4/4/2022 1.3.0-alpha.2 is deprecated because it is no longer maintained.
1.2.1-g5e4fb68cb5 701 4/5/2022 1.2.1-g5e4fb68cb5 is deprecated because it is no longer maintained.
1.2.0-preview.58 183 4/3/2022 1.2.0-preview.58 is deprecated because it is no longer maintained.
1.2.0-preview.54 186 3/15/2022 1.2.0-preview.54 is deprecated because it is no longer maintained.
1.2.0-preview.53 176 3/15/2022 1.2.0-preview.53 is deprecated because it is no longer maintained.
1.2.0-preview.51 187 3/14/2022 1.2.0-preview.51 is deprecated because it is no longer maintained.
1.2.0-gfedfcb591b 719 4/4/2022 1.2.0-gfedfcb591b is deprecated because it is no longer maintained.
1.2.0-gc3d6596f9b 688 4/4/2022 1.2.0-gc3d6596f9b is deprecated because it is no longer maintained.
1.1.0.60 1,558 3/2/2022 1.1.0.60 is deprecated because it is no longer maintained.
1.1.0.59-preview 727 2/3/2022 1.1.0.59-preview is deprecated because it is no longer maintained.
1.1.0.55-preview 714 1/23/2022 1.1.0.55-preview is deprecated because it is no longer maintained.
1.1.0.52-preview 752 1/22/2022 1.1.0.52-preview is deprecated because it is no longer maintained.
1.1.0.49-preview 745 1/19/2022 1.1.0.49-preview is deprecated because it is no longer maintained.
1.1.0.48-preview 668 1/18/2022 1.1.0.48-preview is deprecated because it is no longer maintained.
1.1.0.46-preview 734 1/18/2022 1.1.0.46-preview is deprecated because it is no longer maintained.
1.0.0.43-preview 713 1/16/2022 1.0.0.43-preview is deprecated because it is no longer maintained.
1.0.0.38 956 1/4/2022 1.0.0.38 is deprecated because it is no longer maintained.
1.0.0.37 414 1/4/2022 1.0.0.37 is deprecated because it is no longer maintained.
1.0.0.30-preview 270 12/30/2021 1.0.0.30-preview is deprecated because it is no longer maintained.
1.0.0.28-preview 285 12/22/2021 1.0.0.28-preview is deprecated because it is no longer maintained.
1.0.0.12-preview 274 12/20/2021 1.0.0.12-preview is deprecated because it is no longer maintained.
1.0.0.8-preview 262 12/18/2021 1.0.0.8-preview is deprecated because it is no longer maintained.
1.0.0.4-preview 314 12/18/2021 1.0.0.4-preview is deprecated because it is no longer maintained.