Send Email with Attachment in ASP.NET and C#

This tutorial will show you how to send a simple email message with an attachment using ASP.NET 2.0 and C# Sending a email with an attachment using ASP.NET 2.0 and C# is actually very simple. First, you will need to import the System.Net.Mail namespace. The System.Net.Mail namespace contains the SmtpClient...

Send Email with Authentication using ASP.NET and VB

This tutorial will show you how to send a simple email message with authentication using ASP.NET 2.0 and VB.NET Sending a email with Priorities using ASP.NET 2.0 and VB.NET is actually very simple. First, you will need to import the System.Net.Mail namespace. The System.Net.Mail namespace contains the...

Sending Email in ASP.NET 2.0 : Scott Mitchell

The .NET Framework version 1.x included a number of classes in the System.Web.Mail class that allowed programmatically sending an email with a few scant lines of code. While this namespace and these classes still exist in the .NET Framework version 2.0, they have been deprecated in favor of new mail...

Mail Templates : Kleshchevnikov Alexander

In this article am going to consider the process of managing and sending emails inside a web application. Almost every web site has a feedback form or a registration form. After validating user's entries and do some actions it is necessary sometimes to send a notification email to the user or, for instance...

ASP.NET Tip: Sending Mail with ASP.NET 2.0 : Eric Smith

The new System.Net.Mail library in ASP.NET 2.0 introduces some useful features, but it also includes bugs. Find out how they come into play when you send mail. In ASP.NET 2.0, Microsoft deprecated the System.Web.Mail namespace and replaced it with System.Net.Mail. The new library introduces some new...