发送邮件 1.0.0

dotnet add package 发送邮件 --version 1.0.0
                    
NuGet\Install-Package 发送邮件 -Version 1.0.0
                    
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="发送邮件" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="发送邮件" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="发送邮件" />
                    
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 发送邮件 --version 1.0.0
                    
#r "nuget: 发送邮件, 1.0.0"
                    
#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=发送邮件&version=1.0.0
                    
Install 发送邮件 as a Cake Addin
#tool nuget:?package=发送邮件&version=1.0.0
                    
Install 发送邮件 as a Cake Tool

SmtpEmail email = SmtpEmail.CreateInstance("smtp.163.com", 10, "abc@163.com", "与发件人邮箱同时显示的标题", "CVgwRhvvzr7khDta", 25, false);
               email.Body = "我是-邮件内容-你好";
               email.Subject = "我是-邮件标题";
               email.To = "def@qq.com";
               email.Priority = System.Net.Mail.MailPriority.Normal;
               email.FromBcc = true;
               email.FromBccEmail = null;
               email.FromCc = true;
               email.FromCcEmail = null;
               email.Send();

Product Compatible and additional computed target framework versions.
.NET Framework net47 is compatible.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

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
1.0.0 0 4/17/2025