Email sent to deleted items

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.
 
N

Nicholas Paldino [.NET/C# MVP]

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?
 
C

Code Monkey

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.
 
?

=?ISO-8859-1?Q?G=F6ran_Andersson?=

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.
 
C

Code Monkey

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top