Creating effective links

CampaignMonitor blogged today about an email they sent out that triggered the Thunderbird “this might be a scam” filter.

After a bit of tweaking, we discovered that Thunderbird systematically throws up this alert when it sees a URLs in your HTML email copy. In this case, we had made the mistake of adding the following line:
If you would like to support the National Wildlife Federation in protecting wildlife and their habitats, kindly donate at http://killspill.org/.

This isn’t just a Thunderbird filter, many of the spamfilters out there including those at the various webmail providers and those built into desktop email clients look at the same thing.
In some cases, they throw up a warning when the text in the <a href=””> tag is different from the visible text. For example:
<a href=”http://clickthroughlink.esp.domain.com”> http://killspill.org</a>
will trigger a warning in many email clients while
<a href=”http://killspill.org/”>http://killspill.org/</a>
won’t generate a warning.  But in some clients, including apparently Thunderbird, the link <a href=”http://killspill.org/”> http://killspill.org/</a> will cause a scam warning.
These warnings themselves are a good thing. Overall, there are a lot of phishers and scammers use mis-matching links to attempt to deceive recipients into clicking on http://spammersite.com/ because they think they’re visiting http://amazon.com/.

Related Posts

HTML in email

Steve and I were talking this afternoon about HTML in email. He wanted to know what headers I looked for in the HTML portion of an email. A good question, as I’ve seen everything from a full doctype declaration through to just <body> tags.. All of them seem to render OK in various mail clients so I don’t spend too much time worrying about the specific HTML header elements. I do look for invalid tags and comments, but I check those whether they are in the header or the body.
Those of you that design HTML emails, what are your experiences with headers? Are there specific HTML headers that you always include? Do you skip the header portion of the HTML document and just use body tags? How do you test? What do you think is important?

Read More

10 ways spam is like Vuvuzelas

Amir Lev has a great post today detailing the 10 ways that spam is like Vuvuzelas. After reading his reasons (and deleting over 1000 messages from Cutwail), I absolutely agree.

Read More

Spam lawsuits: new and old

There’s been a bit of court activity related to spam that others have written about and I feel need a mention. I’ve not yet read the papers fully, but hope to get a chance to fully digest them over the weekend.
First is e360 v. Spamhaus. This is the case that actually prompted me to start this blog and my first blog post analyzed the 7th circuit court ruling sending the case back the lower court to determine actual damages. The lower court ruled this week, lowering the judgment to $27,002 against Spamhaus. The judge ruled that there was actual tortuous interference on the part of Spamhaus. In my naive reading of the law, this strikes me as not only an incorrect ruling, but one that ignores previous court decisions affirming that blocklists are protected under Section 230. Venkat seems to agree with me.

Read More