xss.EmailProvider 1.0.5.2

This package contains the method for send emails.

There is a newer version of this package available.
See the version list below for details.
Install-Package xss.EmailProvider -Version 1.0.5.2
dotnet add package xss.EmailProvider --version 1.0.5.2
<PackageReference Include="xss.EmailProvider" Version="1.0.5.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add xss.EmailProvider --version 1.0.5.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: xss.EmailProvider, 1.0.5.2"
For F# scripts that support #r syntax, copy this into the source code to reference the package.

Release Notes

Add asea methods

New methods:

SendEmailAsync

SendEmail
SendEmail_WithImage

SendEmailAutoResponders

SendEmailAsyncListToEmailFeedBack

SendEmailAsync_WithImage

Need these store procedure in your client app.


/*=============================================
-- Author:  Bbautista
-- Create Date: 2019-03-13
-- Dependencies:  
-- Description:  
-- Notes:  
-- [Redmine Ticket: ?] - Update Email Provider Nuget
-- Modification:  
-- [Redmine Ticket: ?]
-- =============================================
*/

Create Procedure [dbo].[EmailProvider_GetSettings_Sp]
As
Begin
   Set NoCount On;
   Set Transaction Isolation Level Read UnCommitted;
   Select top 1
   [S].[EmailServer]
 , [S].[EmailPort]
 , [S].[EmailUsername]
 , [S].[EmailPassword]
 , [S].[EmailSender]
 , [S].[CompanyName]
   From [tbl_Settings] AS [S];
End;


/*=============================================
-- Author:  Bbautista
-- Create Date: 2019-03-13
-- Dependencies:  
-- Description:  
-- Notes:  
-- [Redmine Ticket: ?] - Update Email Provider Nuget
-- Modification:  
-- [Redmine Ticket: ?]
-- =============================================
*/

CREATE Procedure [EmailProvider_SaveLog_Sp]
 @mail As      NVarChar(Max)
, @emailFrom As NVarChar(200)
, @emailTo As   NVarChar(200)
, @errorCode As NVarChar(Max)
, @subject As   NVarChar(100)
, @appId As     SmallInt
As
Begin
   Insert Into [Dbo].[Tbl_LogEmail] (
   [Mail]
 , [EmailFrom]
 , [EmailTo]
 , [ErrorCode]
 , [Subject]
 , [AppId] )
   Values
(
@mail
   , @emailFrom
   , @emailTo
   , @errorCode
   , @subject
   , @appId
);
End;

NuGet packages (55)

Showing the top 5 NuGet packages that depend on xss.EmailProvider:

Package Downloads
xss.EmailTemplateBackEnd
Generation new version with changes in updated nugets
xss.OrdersBackEnd
This package contains classes and methods related to orders.
xss.RolesBackend
This nuget is for Backend for User, roles, navsettings, reports_roles and controls management
xss.Autoresponder.Client
This package sends mails with the autoresponder configured.
xss.AutoshipBackend
Package Description

Version History

Version Downloads Last updated
2.2.0 161 8/24/2021
2.1.0 139 6/24/2021
2.0.0 349 10/29/2020
1.0.5.8 189 3/6/2020
1.0.5.7 9 3/5/2020
1.0.5.6 5 3/5/2020
1.0.5.5 36 2/27/2020
1.0.5.4 57 2/19/2020
1.0.5.3 32 2/17/2020
1.0.5.2 50 11/18/2019
1.0.5.1 12 9/23/2019
1.0.5 4 6/20/2019
1.0.4 14 4/15/2019
1.0.3 0 4/10/2019
1.0.2 0 3/27/2019
1.0.1 0 3/25/2019
1.0.0 3 3/19/2019
Show less