Tuesday, June 24, 2014

Sending Mail from Asp.Net c# with Attachment

Introduction This post will explain you how to sending the mail from the asp.net along with file attachment Note:- You can send even though you company having Gmail access using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Net; using System.Net.Mail; ...
Read More »

Sending Mail from Asp.Net c#

Introduction This post will explain you how to sending the mail from the asp.net Note:- You can send even though you company having Gmail access  using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Net; namespace SampleTestingCodes {     public partial class SendingMailFromAsp :...
Read More »