SeliseBlocks.MailDriver 8.0.0-preview.1

This is a prerelease version of SeliseBlocks.MailDriver.
dotnet add package SeliseBlocks.MailDriver --version 8.0.0-preview.1                
NuGet\Install-Package SeliseBlocks.MailDriver -Version 8.0.0-preview.1                
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="SeliseBlocks.MailDriver" Version="8.0.0-preview.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SeliseBlocks.MailDriver --version 8.0.0-preview.1                
#r "nuget: SeliseBlocks.MailDriver, 8.0.0-preview.1"                
#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.
// Install SeliseBlocks.MailDriver as a Cake Addin
#addin nuget:?package=SeliseBlocks.MailDriver&version=8.0.0-preview.1&prerelease

// Install SeliseBlocks.MailDriver as a Cake Tool
#tool nuget:?package=SeliseBlocks.MailDriver&version=8.0.0-preview.1&prerelease                

SeliseBlocks.MailDriver

Overview

SeliseBlocks.MailDriver is a Mail driver designed to integrate email functionalities into your application. It provides a standardized way to send mail securely.

Installation

To install SeliseBlocks.MailDriver, add the NuGet package to your project:

dotnet add package SeliseBlocks.MailDriver

Usage

Register Dependencies

Before using SeliseBlocks.MailDriver, ensure that all required dependencies are registered in your application's dependency injection container. Add the following line in your Program.cs:

add the namespace

using Blocks.Extension.DependencyInjection;

register the service

builder.Services.RegisterBlocksMailService();

This method will configure and register all necessary services required for the Mail driver to function properly.

Features

  • Send mail

    var request = new SendMail
    {
        SubjectDataContext = <Dictionary<string, string>>,
        To = <string[]>,
        Bcc = <string[]>,
        Cc = <string[]>,
        Purpose = <string>,
        Language = <string>,
        ReplyTo = <string[]>,
        Attachments = <string[]>,
        BodyDataContext = <Dictionary<string, string>>,
        ProjectKey = <string>
    }
    

    Invoke SendAsync

    await SendAsync(request);
    
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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.0-preview.1 41 2/20/2025