http://ea.nytimes.com/cgi-bin/email?REFURI=http://www.nytimes.com/
2002/07/03/dining/03SECR.html Turns out that the “E-Mail This
Article” feature of NY Times stories works with
articles older than a week (that you otherwise have to pay for).
So, if you get a page which links to for-fee Times
articles, run this nytimes
emailer bookmarklet on the original page, then select the link
again. (The bookmarklet converts links to pages to links to “Email This
Article” pages, which you can then use to get the article sent
to you.)
(Also, if you select the “Send abstract and link to full coverage” option, you might get a link that works forever.)
Update: If all your pages go through an XSL style sheet at some stage, you can add this xsl:template to your code to add an “(email this)” link after every existing NY Times link (example):
<xsl:template match="a">
<xsl:copy-of select="."/>
<xsl:if test="starts-with(@href, 'http://www.nytimes.com/')">
<xsl:text> (</xsl:text>
<a href="http://ea.nytimes.com/cgi-bin/email?REFURI={@href}">
email this
</a>
<xsl:text>) </xsl:text>
</xsl:if>
</xsl:template>
(Go XSL!) 23:51