first of all, sorry for my bad English =(

I created an HTML email, send it to yahoo, hotmail and gmail, the first and the second work's ok, received in the front of the inbox, but, the gmail mark as spam, but it will mark it as span only with I send these HTML codes:

                <tr>
                    <td colspan="2" style="padding:10px; border:2px solid #e3e3e3; text-align:center;"><a href="%%url%%" style="font-size:14px; text-decoration:none; color:#595959;"><span>Clique aqui e confira todas as informações e fotos dessa embarcação em nosso site - ID %%id%%</span></a></td>
                </tr>
                <tr>
                    <td colspan="2" style="padding:8px 10px; border-top:15px solid #fff; border-bottom:10px solid #fff; font-size:16px; text-transform:uppercase; color:#c90000; background:#e6e6e6;">Destaques YachtBrasil</td>
                </tr>
                <tr>
                    <td colspan="2" align="center" style="padding:3px; border:2px solid #e7e7e7;"><a href="http://www.yachtbrasil.com.br/"><span><img src="http://www.yachtbrasil.com.br/img/temp/YB-banner-email-site.jpg" alt="" style="display:block; border:none;" /></span></a></td>
                </tr>

It happens because of the anchor links, if I remove the stuff, it will work and send the email, the question is, How can I send anchor links to not be marked as Spam using gmail? I'm sending this email using a enterprise googlemail account.

Thanks for the tips, I search here and at google and just find the tip after the anchor link.

Best regards.

link|improve this question

60% accept rate
2  
This got nothing to do with programming and there's nothing you can do in code to "fix" this. You've already asked how to unflag your domain: serverfault.com/questions/221538/… so just follow the answers you got there. – Shadow Wizard Jan 20 '11 at 13:26
I changed, now I'm using googlemail to send via smtp, no more configuring server's, I get sad with that because I don't have a good understanding with DNS. The problem is, if I remove these lines I posted, the email get clear at the inbox. – Rodrigo Ferrari Jan 20 '11 at 13:28
feedback

2 Answers

up vote 3 down vote accepted

The problem is fixed!

If you have an email with all the headers corrects, but the email still is not getting to inbox destination, you should explicitly type some anchor parameters, such as target=blank and shape=rect.

See the example:

<a href="link.html" target="_blank" style="style....">Test</a>

Should only contain:

<a href="link.html" target="_blank" shape="rect">Test</a>

This will let the links be redirected to the inbox and not the spam folder!

Thanks for the negative vote in the question, next time please read the question carefully and try to help!

link|improve this answer
feedback

E-mails are not meant to contain HTML (despite some conventions) and developers should avoid doing that. Always should have and still should have. At least with our current standards. We should give links, full URLs with no a href what so ever. And your question is not about programming. It's about a specific program: gmail.

I doubt what solved it for you will work for long (it may not even work for anyone else). Gmail's spam filter is always improving and changing and if you are sending SPAM, it will be caught sooner or later. And your solution says nothing about email's MIMEs or HTML. It's just random luck that it worked out.

Just to re-enforce: for now, avoid HTML inside e-mails at all costs. Want HTML? Use HTTP.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.