D
DAXU
Hi,
I wrote a small function to send email in c#
function detail:
{
MailMessage theMailMessage = new
MailMessage("(e-mail address removed)",
"(e-mail address removed)");
theMailMessage.Body = @"The PNC daily feed for 28 Jan 2008
was not imported.
t: 01732 373122 f: 01732 373121 e: (e-mail address removed)
";
theMailMessage.Subject = "Ford Report";
SmtpClient theClient = new SmtpClient("localhost");
theClient.UseDefaultCredentials =true;
theClient.Send(theMailMessage);
}
The email was sent to me but I received in the junk email folder (we
use exchange server, and I found that email in my junk).
So why exchange server think that it is a junk? Is there some options
I need to add to make the email not junk?
Many Thanks
Jerry
I wrote a small function to send email in c#
function detail:
{
MailMessage theMailMessage = new
MailMessage("(e-mail address removed)",
"(e-mail address removed)");
theMailMessage.Body = @"The PNC daily feed for 28 Jan 2008
was not imported.
t: 01732 373122 f: 01732 373121 e: (e-mail address removed)
";
theMailMessage.Subject = "Ford Report";
SmtpClient theClient = new SmtpClient("localhost");
theClient.UseDefaultCredentials =true;
theClient.Send(theMailMessage);
}
The email was sent to me but I received in the junk email folder (we
use exchange server, and I found that email in my junk).
So why exchange server think that it is a junk? Is there some options
I need to add to make the email not junk?
Many Thanks
Jerry