Soenneker.Extensions.Dtos.Email 3.0.187

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Extensions.Dtos.Email --version 3.0.187
                    
NuGet\Install-Package Soenneker.Extensions.Dtos.Email -Version 3.0.187
                    
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="Soenneker.Extensions.Dtos.Email" Version="3.0.187" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Extensions.Dtos.Email" Version="3.0.187" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Extensions.Dtos.Email" />
                    
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 Soenneker.Extensions.Dtos.Email --version 3.0.187
                    
#r "nuget: Soenneker.Extensions.Dtos.Email, 3.0.187"
                    
#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.
#:package Soenneker.Extensions.Dtos.Email@3.0.187
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Extensions.Dtos.Email&version=3.0.187
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Dtos.Email&version=3.0.187
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Extensions.Dtos.Email

A collection of helpful EmailDto extension methods

📧 Features

  • Converts a well-defined EmailDto into a MimeKit MimeMessage
  • Supports both html and plain formats
  • Adds To, Cc, Bcc, and Reply-To addresses
  • Automatically attaches files via EmailAttachmentDto
  • Sets headers for High and Low priority emails
  • Logs malformed recipients using ILogger

🧪 Validation

The extension validates:

  • Required fields: To, Subject, and Body
  • Non-null, non-whitespace addresses
  • Optionally logs issues rather than throwing for individual recipient fields

Installation

dotnet add package Soenneker.Extensions.Dtos.Email

🔧 Usage

var mimeMessage = emailDto.ToMimeMessage(logger);

📁 Example EmailDto

var dto = new EmailDto
{
    To = new List<string> { "to@example.com" },
    Cc = new List<string> { "cc@example.com" },
    Bcc = new List<string> { "bcc@example.com" },
    ReplyTo = "reply@example.com",
    Name = "Sender Name",
    Address = "sender@example.com",
    Subject = "Test Subject",
    Body = "<p>This is a test email.</p>",
    Format = EmailFormat.Html,
    Priority = EmailPriority.High,
    Attachments = new List<EmailAttachmentDto>
    {
        new EmailAttachmentDto
        {
            FileName = "test.txt",
            MimeType = "text/plain",
            Data = Encoding.UTF8.GetBytes("Sample attachment content")
        }
    }
};
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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 (1)

Showing the top 1 NuGet packages that depend on Soenneker.Extensions.Dtos.Email:

Package Downloads
Soenneker.Email.Sender

A high-level utility responsible for orchestrating the creation and delivery of templated email messages

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.217 117 9/10/2025
3.0.216 138 9/9/2025
3.0.215 120 9/9/2025
3.0.214 131 9/9/2025
3.0.213 178 9/4/2025
3.0.212 157 9/3/2025
3.0.211 155 9/3/2025
3.0.210 152 9/3/2025
3.0.209 141 9/3/2025
3.0.208 136 9/3/2025
3.0.207 136 9/3/2025
3.0.206 179 8/17/2025
3.0.205 111 8/17/2025
3.0.204 146 8/15/2025
3.0.203 142 8/15/2025
3.0.202 157 8/11/2025
3.0.201 168 8/11/2025
3.0.200 120 8/11/2025
3.0.199 123 8/11/2025
3.0.198 123 8/11/2025
3.0.197 191 8/11/2025
3.0.196 150 8/11/2025
3.0.195 129 8/11/2025
3.0.194 239 8/5/2025
3.0.193 233 8/5/2025
3.0.192 129 7/29/2025
3.0.191 97 7/29/2025
3.0.190 383 7/9/2025
3.0.189 160 7/9/2025
3.0.188 157 7/8/2025
3.0.187 238 6/28/2025
3.0.186 67 6/28/2025
3.0.185 106 6/28/2025
3.0.184 99 6/27/2025
3.0.183 65 6/27/2025
3.0.182 106 6/27/2025
3.0.181 186 6/25/2025
3.0.180 168 6/25/2025
3.0.179 162 6/24/2025
3.0.178 418 6/11/2025
3.0.177 308 6/11/2025
3.0.176 303 6/11/2025
3.0.175 329 6/11/2025
3.0.174 309 6/10/2025
3.0.173 336 6/3/2025
3.0.172 140 6/2/2025
3.0.171 205 6/2/2025
3.0.170 224 5/28/2025
3.0.169 145 5/28/2025
3.0.168 143 5/27/2025
3.0.167 238 5/27/2025
3.0.166 175 5/27/2025
3.0.165 150 5/27/2025
3.0.164 164 5/27/2025
3.0.163 146 5/27/2025
3.0.162 142 5/27/2025
3.0.161 222 5/25/2025
3.0.160 155 5/25/2025
3.0.159 225 5/23/2025
3.0.158 125 5/23/2025
3.0.157 123 5/23/2025
3.0.156 122 5/23/2025
3.0.155 127 5/23/2025
3.0.154 139 5/23/2025
3.0.153 151 5/22/2025
3.0.152 144 5/22/2025
3.0.151 517 5/14/2025
3.0.150 285 5/14/2025
3.0.149 238 5/14/2025
3.0.148 316 5/8/2025
3.0.147 146 5/8/2025
3.0.146 221 5/8/2025
3.0.145 155 5/8/2025
3.0.144 153 5/8/2025
3.0.143 152 5/8/2025
3.0.142 146 5/7/2025
3.0.141 158 5/7/2025
3.0.140 148 5/7/2025
3.0.139 359 5/6/2025
3.0.138 176 5/5/2025
3.0.137 168 5/5/2025
3.0.136 173 5/5/2025
3.0.135 165 5/5/2025
3.0.134 154 5/5/2025
3.0.133 176 5/5/2025
3.0.132 141 5/5/2025
3.0.131 139 5/5/2025
3.0.130 201 5/5/2025
3.0.129 145 5/5/2025
3.0.128 183 5/5/2025
3.0.126 186 5/5/2025
3.0.125 262 4/29/2025
3.0.124 222 4/27/2025
3.0.123 104 4/27/2025
3.0.122 171 4/26/2025
3.0.121 87 4/26/2025
3.0.120 440 4/9/2025
3.0.119 181 4/9/2025
3.0.118 174 4/9/2025
3.0.117 177 4/8/2025
3.0.116 180 4/8/2025
3.0.115 174 4/8/2025
3.0.114 172 4/8/2025
3.0.113 175 4/8/2025
3.0.112 167 4/8/2025
3.0.111 174 4/8/2025
3.0.110 174 4/8/2025
3.0.109 186 4/8/2025
3.0.108 168 4/8/2025
3.0.107 444 4/8/2025
3.0.106 157 4/8/2025
3.0.105 163 4/8/2025
3.0.104 188 4/8/2025
3.0.103 174 4/8/2025
3.0.102 173 4/8/2025
3.0.101 164 4/8/2025
3.0.100 165 4/8/2025
3.0.99 167 4/8/2025
3.0.98 172 4/8/2025
3.0.97 175 4/8/2025
3.0.96 158 4/8/2025
3.0.95 171 4/8/2025
3.0.94 156 4/7/2025
3.0.93 175 4/7/2025
3.0.92 171 4/7/2025
3.0.91 396 4/7/2025
3.0.90 168 4/7/2025
3.0.89 169 4/7/2025
3.0.88 221 4/7/2025
3.0.87 168 4/7/2025
3.0.86 179 4/7/2025
3.0.85 186 4/7/2025
3.0.84 165 4/7/2025
3.0.83 282 4/7/2025
3.0.82 169 4/7/2025
3.0.81 173 4/7/2025
3.0.80 168 4/7/2025
3.0.79 168 4/7/2025
3.0.78 244 4/7/2025
3.0.77 171 4/7/2025
3.0.76 171 4/7/2025
3.0.75 207 4/7/2025
3.0.74 171 4/7/2025
3.0.73 192 4/6/2025
3.0.72 173 4/6/2025
3.0.71 160 4/6/2025
3.0.70 179 4/6/2025
3.0.69 161 4/6/2025
3.0.68 160 4/6/2025
3.0.67 186 4/6/2025
3.0.66 142 4/6/2025
3.0.65 157 4/6/2025
3.0.64 149 4/6/2025
3.0.63 147 4/6/2025
3.0.62 137 4/6/2025
3.0.61 153 4/6/2025
3.0.60 153 4/6/2025
3.0.59 127 4/6/2025
3.0.58 122 4/6/2025
3.0.57 123 4/6/2025
3.0.56 137 4/6/2025
3.0.55 137 4/6/2025
3.0.54 118 4/6/2025
3.0.53 142 4/5/2025
3.0.52 95 4/5/2025
3.0.51 104 4/5/2025
3.0.50 141 4/5/2025
3.0.49 101 4/5/2025
3.0.48 116 4/5/2025
3.0.47 98 4/5/2025
3.0.46 106 4/5/2025
3.0.45 99 4/5/2025
3.0.44 158 4/5/2025
3.0.43 108 4/5/2025
3.0.42 130 4/5/2025
3.0.41 93 4/5/2025
3.0.40 102 4/4/2025
3.0.39 123 4/4/2025
3.0.38 413 4/4/2025
3.0.37 217 4/4/2025
3.0.36 166 4/4/2025
3.0.35 178 4/4/2025
3.0.34 175 4/4/2025
3.0.33 282 4/3/2025
3.0.32 183 4/3/2025
3.0.31 190 4/1/2025
3.0.30 153 4/1/2025
3.0.29 238 4/1/2025
3.0.28 163 4/1/2025
3.0.27 160 4/1/2025
3.0.26 235 4/1/2025
3.0.25 265 4/1/2025
3.0.24 169 4/1/2025
3.0.23 224 4/1/2025
3.0.22 167 3/31/2025
3.0.21 155 3/31/2025
3.0.20 159 3/31/2025
3.0.19 161 3/31/2025
3.0.18 312 3/31/2025
3.0.17 185 3/29/2025
3.0.16 102 3/29/2025
3.0.15 128 3/29/2025
3.0.14 110 3/29/2025
3.0.13 109 3/29/2025
3.0.12 95 3/29/2025
3.0.11 279 3/27/2025
3.0.10 529 3/26/2025
3.0.9 474 3/26/2025
3.0.8 490 3/25/2025
3.0.7 525 3/25/2025
3.0.6 480 3/25/2025
3.0.5 473 3/25/2025
3.0.4 487 3/25/2025
3.0.3 481 3/25/2025
3.0.2 447 3/23/2025
3.0.1 131 3/21/2025