Soenneker.Extensions.Dtos.Email 3.0.205

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.205
                    
NuGet\Install-Package Soenneker.Extensions.Dtos.Email -Version 3.0.205
                    
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.205" />
                    
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.205" />
                    
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.205
                    
#r "nuget: Soenneker.Extensions.Dtos.Email, 3.0.205"
                    
#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.205
                    
#: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.205
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Dtos.Email&version=3.0.205
                    
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.218 322 9/16/2025
3.0.217 179 9/10/2025
3.0.216 173 9/9/2025
3.0.215 138 9/9/2025
3.0.214 165 9/9/2025
3.0.213 215 9/4/2025
3.0.212 179 9/3/2025
3.0.211 173 9/3/2025
3.0.210 173 9/3/2025
3.0.209 152 9/3/2025
3.0.208 147 9/3/2025
3.0.207 147 9/3/2025
3.0.206 222 8/17/2025
3.0.205 125 8/17/2025
3.0.204 160 8/15/2025
3.0.203 157 8/15/2025
3.0.202 180 8/11/2025
3.0.201 191 8/11/2025
3.0.200 131 8/11/2025
3.0.199 134 8/11/2025
3.0.198 134 8/11/2025
3.0.197 235 8/11/2025
3.0.196 173 8/11/2025
3.0.195 142 8/11/2025
3.0.194 249 8/5/2025
3.0.193 244 8/5/2025
3.0.192 152 7/29/2025
3.0.191 104 7/29/2025
3.0.190 447 7/9/2025
3.0.189 167 7/9/2025
3.0.188 165 7/8/2025
3.0.187 283 6/28/2025
3.0.186 68 6/28/2025
3.0.185 124 6/28/2025
3.0.184 115 6/27/2025
3.0.183 66 6/27/2025
3.0.182 117 6/27/2025
3.0.181 199 6/25/2025
3.0.180 184 6/25/2025
3.0.179 178 6/24/2025
3.0.178 449 6/11/2025
3.0.177 315 6/11/2025
3.0.176 310 6/11/2025
3.0.175 346 6/11/2025
3.0.174 313 6/10/2025
3.0.173 395 6/3/2025
3.0.172 141 6/2/2025
3.0.171 225 6/2/2025
3.0.170 238 5/28/2025
3.0.169 148 5/28/2025
3.0.168 144 5/27/2025
3.0.167 263 5/27/2025
3.0.166 185 5/27/2025
3.0.165 156 5/27/2025
3.0.164 172 5/27/2025
3.0.163 148 5/27/2025
3.0.162 143 5/27/2025
3.0.161 252 5/25/2025
3.0.160 173 5/25/2025
3.0.159 262 5/23/2025
3.0.158 130 5/23/2025
3.0.157 124 5/23/2025
3.0.156 123 5/23/2025
3.0.155 128 5/23/2025
3.0.154 140 5/23/2025
3.0.153 155 5/22/2025
3.0.152 147 5/22/2025
3.0.151 615 5/14/2025
3.0.150 303 5/14/2025
3.0.149 243 5/14/2025
3.0.148 362 5/8/2025
3.0.147 148 5/8/2025
3.0.146 246 5/8/2025
3.0.145 158 5/8/2025
3.0.144 154 5/8/2025
3.0.143 160 5/8/2025
3.0.142 147 5/7/2025
3.0.141 161 5/7/2025
3.0.140 149 5/7/2025
3.0.139 413 5/6/2025
3.0.138 190 5/5/2025
3.0.137 174 5/5/2025
3.0.136 180 5/5/2025
3.0.135 172 5/5/2025
3.0.134 159 5/5/2025
3.0.133 184 5/5/2025
3.0.132 143 5/5/2025
3.0.131 141 5/5/2025
3.0.130 217 5/5/2025
3.0.129 147 5/5/2025
3.0.128 200 5/5/2025
3.0.126 205 5/5/2025
3.0.125 282 4/29/2025
3.0.124 253 4/27/2025
3.0.123 111 4/27/2025
3.0.122 191 4/26/2025
3.0.121 94 4/26/2025
3.0.120 479 4/9/2025
3.0.119 185 4/9/2025
3.0.118 174 4/9/2025
3.0.117 181 4/8/2025
3.0.116 182 4/8/2025
3.0.115 178 4/8/2025
3.0.114 178 4/8/2025
3.0.113 175 4/8/2025
3.0.112 173 4/8/2025
3.0.111 176 4/8/2025
3.0.110 179 4/8/2025
3.0.109 190 4/8/2025
3.0.108 172 4/8/2025
3.0.107 530 4/8/2025
3.0.106 159 4/8/2025
3.0.105 167 4/8/2025
3.0.104 193 4/8/2025
3.0.103 177 4/8/2025
3.0.102 173 4/8/2025
3.0.101 165 4/8/2025
3.0.100 165 4/8/2025
3.0.99 171 4/8/2025
3.0.98 175 4/8/2025
3.0.97 177 4/8/2025
3.0.96 160 4/8/2025
3.0.95 174 4/8/2025
3.0.94 157 4/7/2025
3.0.93 178 4/7/2025
3.0.92 174 4/7/2025
3.0.91 473 4/7/2025
3.0.90 170 4/7/2025
3.0.89 174 4/7/2025
3.0.88 246 4/7/2025
3.0.87 171 4/7/2025
3.0.86 182 4/7/2025
3.0.85 190 4/7/2025
3.0.84 165 4/7/2025
3.0.83 328 4/7/2025
3.0.82 169 4/7/2025
3.0.81 177 4/7/2025
3.0.80 168 4/7/2025
3.0.79 168 4/7/2025
3.0.78 264 4/7/2025
3.0.77 176 4/7/2025
3.0.76 173 4/7/2025
3.0.75 216 4/7/2025
3.0.74 172 4/7/2025
3.0.73 199 4/6/2025
3.0.72 175 4/6/2025
3.0.71 160 4/6/2025
3.0.70 185 4/6/2025
3.0.69 161 4/6/2025
3.0.68 160 4/6/2025
3.0.67 196 4/6/2025
3.0.66 144 4/6/2025
3.0.65 158 4/6/2025
3.0.64 151 4/6/2025
3.0.63 148 4/6/2025
3.0.62 137 4/6/2025
3.0.61 156 4/6/2025
3.0.60 163 4/6/2025
3.0.59 128 4/6/2025
3.0.58 125 4/6/2025
3.0.57 127 4/6/2025
3.0.56 142 4/6/2025
3.0.55 140 4/6/2025
3.0.54 118 4/6/2025
3.0.53 152 4/5/2025
3.0.52 95 4/5/2025
3.0.51 104 4/5/2025
3.0.50 149 4/5/2025
3.0.49 105 4/5/2025
3.0.48 122 4/5/2025
3.0.47 99 4/5/2025
3.0.46 112 4/5/2025
3.0.45 99 4/5/2025
3.0.44 170 4/5/2025
3.0.43 110 4/5/2025
3.0.42 140 4/5/2025
3.0.41 93 4/5/2025
3.0.40 104 4/4/2025
3.0.39 123 4/4/2025
3.0.38 487 4/4/2025
3.0.37 232 4/4/2025
3.0.36 172 4/4/2025
3.0.35 189 4/4/2025
3.0.34 181 4/4/2025
3.0.33 317 4/3/2025
3.0.32 189 4/3/2025
3.0.31 196 4/1/2025
3.0.30 155 4/1/2025
3.0.29 275 4/1/2025
3.0.28 168 4/1/2025
3.0.27 167 4/1/2025
3.0.26 269 4/1/2025
3.0.25 293 4/1/2025
3.0.24 170 4/1/2025
3.0.23 243 4/1/2025
3.0.22 171 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 361 3/31/2025
3.0.17 220 3/29/2025
3.0.16 105 3/29/2025
3.0.15 138 3/29/2025
3.0.14 117 3/29/2025
3.0.13 112 3/29/2025
3.0.12 96 3/29/2025
3.0.11 326 3/27/2025
3.0.10 544 3/26/2025
3.0.9 475 3/26/2025
3.0.8 495 3/25/2025
3.0.7 541 3/25/2025
3.0.6 484 3/25/2025
3.0.5 473 3/25/2025
3.0.4 488 3/25/2025
3.0.3 481 3/25/2025
3.0.2 514 3/23/2025
3.0.1 137 3/21/2025