30 packages tagged with “smtpclient”
The email provider base by MailKit.
Package Description
NLog.Targets.Mail for sending emails using the .NET SmtpClient
The email provider base by SmtpClient.
An ASP.NET Core service that uses razor views to send emails.
An SMTP client for WinRT and UWP. Send emails from within your Windows Store and Windows Phone app.
WP8 and WP7 SMTP client library to send emails without using the EmailComposeTask, and attach any type of file. Main Features: • connects to Microsoft Live, Gmail or to a custom SMTP mail server (SSL/TLS compatible). • supports any kind of attachment, from resource or isolated storage: pdf, mp3, wav, mp4, avi, bmp, txt, zip, jpg, etc. • sends an email without calling EmailComposeTask and does not need user intervention. • multithreaded: will not freeze/block your UI. • works on wifi and data connection. • supports international charset (Chinese). Usage scenario: //create a new MailMessage object MailMessage mailMessage = new MailMessage(); //set a Live/Hotmail or Gmail, or a custom SMTP account mailMessage.UserName= "*****@hotmail.com; mailMessage.Password = "********"; mailMessage.AccountType = AccountType.MicrosoftAccount; mailMessage.From = "myapp@mycompany.com"; //set mail data mailMessage.To = "foo@foo.com"; mailMessage.ReplyTo = "foo5@foo.com"; mailMessage.Subject = "Hello from WP"; mailMessage.Body = "I can send any type of attachment from my app now !!"; //text or HTML //attach ANY KIND of file from a resource or IsolatedStorage path mailMessage.AddAttachment("\rex\file.wav"); mailMessage.AddAttachment("\myFolder\file.mp3"); mailMessage.AddAttachment("\downloads\file.mp4"); //attach from in-memory data: mailMessage.AddAttachment(Encoding.UTF8.GetBytes("yesssss".ToCharArray()), "memoryfile.txt"); //set message event handlers mailMessage.Error += mailMessage_Error; mailMessage.MailSent += mailMessage_MailSent; mailMessage.Progress += mailMessage_Progress; //send email (async) mailMessage.SendMail(); Support: support@venetasoft.it
An ASP.NET Core service that uses razor views to send emails via Smtp Client.
Missive is a simple Fluent API wrapper for the .NET System.Net.MailMessage object. Because sometimes things just need to be "that" easy.
C# library for queuing emails in a database and sending asynchronously
The aoxe email provider implement by MailKit.
The email provider base by Amazon.SimpleEmailV2.
The aoxe email provider implement by SmtpClient.
基于MailKit封装的电子邮件发送服务,支持服务依赖注入
SmtpClient wrapper to simplify monitoring of sending emails
The aoxe email provider implement by Amazon.SimpleEmailV2.
The email provider base by Azure.Communication.Email.
The aoxe email provider implement by Azure.Communication.Email.
Library for using SmtpClient async with interfaces for teasting.
TCP-based clients are designed to help understand the basics of network communication. These clients do not encrypt the data they send. I recommend not using them in commercial applications.
.net standard smtp mail manager based on SmtpClient
Components for Data Protection, Secure Storage, Secure Transfer, and Advanced Electronic Signatures, including PAdES for PDF, XAdES for XML, and full support for Hardware Security Modules (HSM).
The Email_dotNET Class Library is a high level wrapper around the SmtpClient. The library is currently compiled at .Net 4.0 so it should work with any application running .Net 4.0 and above. Allows sending, receiving and processing email messages in .NET applications. Includes SSL and TLS support along with OAuth and DKIM capabilities.
The AwsEmail_dotNET Class Library is a high level wrapper around the Amazon SES. The library is currently compiled at .Net 4.0 so it should work with any application running .Net 4.0 and above. Allows sending, receiving and processing email messages in .NET applications. Includes SSL and TLS support along with OAuth and DKIM capabilities.