TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Naveen Kumar Kaushik
NA
421
67.3k
How I can track Email send or Not Through Asp .Net?
May 8 2013 2:19 AM
Hi all,
I've Written a code for email send in asp .net but i want to track the email record email send on the other end or not.
Here is my EmailSend code:-
public void Sendmail(string ECandidateName)
{
SmtpClient smtpClient = new SmtpClient();
MailMessage message = new MailMessage();
try
{
MailAddress fromAddress = new MailAddress("Email Address", "Name");
smtpClient.Host = "smtp.gmail.com";
smtpClient.Port = 587;
message.From = fromAddress;
message.To.Add(txtEmail.Text);
message.Subject = "Thank you for your Connecting Us";
message.Bcc.Add("emailid");
message.Bcc.Add(new MailAddress("Emailid"));
message.IsBodyHtml = false;
message.Body = "Thnks for Request"
smtpClient.Credentials = new System.Net.NetworkCredential("EmailId", "Password");
smtpClient.EnableSsl = true;
smtpClient.Send(message);
// lblStatus.Text = "Email successfully sent.";
}
catch (Exception ex)
{
Response.Write("<script>alert('"+ex.Message+"')</script>");
// lblStatus.Text = "Send Email Failed.
" + ex.Message;
}
}
}
this code is working fine but some times it doesn't send the email to particular address which I've mention in To option.I want to track the email if the email is send or not towards the receivers end
Thanks,
Regards
Naveen
Reply
Answers (
1
)
Gridview custom paging..
Howtoshowrows multiple times inside the footer template when