Thanks Aidy.
You have reason, the content or subject is important, but I make probes
sending simple HTML to me from me, but the mail goes to junk folder.
This is the HTML content:
<html>
<body>
<h1>Email Test</h1>
<div>That's is a simple mail test</div>
</body>
</html>
MailMessage msg = new MailMessage();
msg.To.Add("lazaro@cmips.com");
msg.From = new MailAddress("lazaro@cmips.com");
msg.IsBodyHtml = true;
msg.Subject = "Email Test";
msg.Body = "<html>......";
SmtpClient server = new SmtpClient("*.cmips.com");
smtpClient.Send(msg);
If you know something about this, thank you, if not don't tasted your time.
Bye
> Then the content of the mail is structured such that the mail server
> receiving it thinks it is spam. Change the content of your e-mail, anything
[quoted text clipped - 12 lines]
> >
> > Thanks
Aidy - 24 Oct 2007 10:06 GMT
Small messages such as the ones you are sending are often flagged as spam.
As a text, grab a random email from your inbox that is a bit longer and send
the text in that as a test and see if it goes to spam.
> Thanks Aidy.
>
[quoted text clipped - 42 lines]
>> >
>> > Thanks
Lázaro - 24 Oct 2007 10:31 GMT
I take the source HTML from a Microsoft Mobile news eMail and..... that's
right...the mail goes to Inbox folder.
Thank you very much, I don't lost my time and your time, i goes to this way.
Bye
> Small messages such as the ones you are sending are often flagged as spam.
> As a text, grab a random email from your inbox that is a bit longer and send
[quoted text clipped - 46 lines]
> >> >
> >> > Thanks
Mark Rae [MVP] - 24 Oct 2007 10:16 GMT
> You have reason, the content or subject is important, but I make probes
> sending simple HTML to me from me, but the mail goes to junk folder.
Have you inadvertently added your own address to your spam filter...?

Signature
Mark Rae
ASP.NET MVP
http://www.markrae.net
Lázaro - 24 Oct 2007 10:28 GMT
That's a good cuestion, I'm going to talking to systems guys..., I wrote
about this more latter
Thanks
> > You have reason, the content or subject is important, but I make probes
> > sending simple HTML to me from me, but the mail goes to junk folder.
>
> Have you inadvertently added your own address to your spam filter...?