I've a simple ASP.NET Page that send a email using smtclient. The server is
a Exchange and use my credentials to autentificated.
The problem is that the send mail appear in the junk email folder.
Any idea.
ThanksThen 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
with (for example) just a subject, a link and some text is normally flagged
as spam.
"Lzaro" <Lzaro@.discussions.microsoft.comwrote in message
news:E5FE57BC-6012-4775-8C9B-C487961D71D0@.microsoft.com...
Quote:
Originally Posted by
Hi everyone
>
I've a simple ASP.NET Page that send a email using smtclient. The server
is
a Exchange and use my credentials to autentificated.
>
The problem is that the send mail appear in the junk email folder.
>
Any idea.
>
Thanks
>
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
"Aidy" wrote:
Quote:
Originally Posted by
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
with (for example) just a subject, a link and some text is normally flagged
as spam.
>
"Lázaro" <Lzaro@.discussions.microsoft.comwrote in message
news:E5FE57BC-6012-4775-8C9B-C487961D71D0@.microsoft.com...
Quote:
Originally Posted by
Hi everyone
I've a simple ASP.NET Page that send a email using smtclient. The server
is
a Exchange and use my credentials to autentificated.
The problem is that the send mail appear in the junk email folder.
Any idea.
Thanks
>
>
>
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.
"Lzaro" <Lzaro@.discussions.microsoft.comwrote in message
news:46491F8E-712A-4D03-A85A-753BF774F426@.microsoft.com...
Quote:
Originally Posted by
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
>
>
"Aidy" wrote:
>
Quote:
Originally Posted by
>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
>with (for example) just a subject, a link and some text is normally
>flagged
>as spam.
>>
>"Lzaro" <Lzaro@.discussions.microsoft.comwrote in message
>news:E5FE57BC-6012-4775-8C9B-C487961D71D0@.microsoft.com...
Quote:
Originally Posted by
Hi everyone
>
I've a simple ASP.NET Page that send a email using smtclient. The
server
is
a Exchange and use my credentials to autentificated.
>
The problem is that the send mail appear in the junk email folder.
>
Any idea.
>
Thanks
>
>>
>>
>>
"Lázaro" <Lzaro@.discussions.microsoft.comwrote in message
news:46491F8E-712A-4D03-A85A-753BF774F426@.microsoft.com...
Quote:
Originally Posted by
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...?
--
Mark Rae
ASP.NET MVP
http://www.markrae.net
That's a good cuestion, I'm going to talking to systems guys..., I wrote
about this more latter
Thanks
"Mark Rae [MVP]" wrote:
Quote:
Originally Posted by
"Lázaro" <Lzaro@.discussions.microsoft.comwrote in message
news:46491F8E-712A-4D03-A85A-753BF774F426@.microsoft.com...
>
Quote:
Originally Posted by
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...?
>
>
--
Mark Rae
ASP.NET MVP
http://www.markrae.net
>
>
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
"Aidy" wrote:
Quote:
Originally Posted by
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.
>
"Lázaro" <Lzaro@.discussions.microsoft.comwrote in message
news:46491F8E-712A-4D03-A85A-753BF774F426@.microsoft.com...
Quote:
Originally Posted by
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
"Aidy" wrote:
Quote:
Originally Posted by
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
with (for example) just a subject, a link and some text is normally
flagged
as spam.
>
"Lázaro" <Lzaro@.discussions.microsoft.comwrote in message
news:E5FE57BC-6012-4775-8C9B-C487961D71D0@.microsoft.com...
Hi everyone
I've a simple ASP.NET Page that send a email using smtclient. The
server
is
a Exchange and use my credentials to autentificated.
The problem is that the send mail appear in the junk email folder.
Any idea.
Thanks
>
>
>
>
>
>
0 comments:
Post a Comment