Email sent to deleted items

  • Thread starter Thread starter Code Monkey
  • Start date Start date
C

Code Monkey

I'm using the following code to send emails:

<code>

public Boolean SendEmail(String _fromAddress, String _toAddress,
String _subject, String _message)
{
SmtpClient smtpClient = new SmtpClient();
MailMessage message = new MailMessage();
try
{
MailAddress fromAddress = new MailAddress(_fromAddress);
smtpClient.Host = "10.0.0.230";
smtpClient.Port = 25;
message.From = fromAddress;
message.To.Add(_toAddress);
message.Subject = _subject;
message.IsBodyHtml = true;
message.Body = _message;
smtpClient.Send(message);
return true;
}
catch
{
return false;
}
}

</code>

Nothing special or strange about that. The problem I've got is that
when the email gets sent to internal email addresses, the email ends
up the their 'Deleted Items' box. There's no rules sent up on either
Outlook (2003) or Exchange (2000) to move emails from one box to
another.

The _message string is the HTML returned from a webpage.

Can anyone shed any light or ideas on this problem?

TIA.
 
Is it possible that there is a plugin of some sort (most likely to
detect spam) that is moving the item to Deleted Items on the Exchange server
side?
 
Absolutely no spam filters or similar on either the clients or server.
Only happens on one email address (sales@) which is received by 2
people. Other email address are fine.
 
Code said:
Absolutely no spam filters or similar on either the clients or server.

Are you really really really sure?
Only happens on one email address (sales@) which is received by 2
people. Other email address are fine.

What email client are they using? Is it possible that it filters spam?

Mozilla Thunderbird for example has a built in spam filter.
 
And I quote from my original post, "...There's no rules sent up on
either
Outlook (2003) or Exchange (2000) to move emails from one box to
another. ..."

I've checked this personally, as has the IT manager.
 
Back
Top