Posted on: 2/14/2014 4:59:50 AM | Views : 595

hi,
Got error as Cannot get IIS pickup directory
Used Namespace
using System.Net; using System.Net.Mail;

Code behind
            MailMessage objMailMsg = new MailMessage(From, To);             objMailMsg.BodyEncoding = Encoding.UTF8;             objMailMsg.Subject = Subject;             objMailMsg.Body = message;             objMailMsg.IsBodyHtml = true;             SmtpClient objSMTPClient = new SmtpClient();              &nb ...

Go to the complete details ...