I have added this line to HTML.pm to link email addresses:
$text =~ s#(^|[^\w-])([\w.-]*@[\w.-]+(\.[\w-]+)+)#$1<A HREF="mailto:$2">$2</A>#gs;
How could I modify it to parse an email with subject line such as:
admin@nomail.com?Subject=Hello
--or--
<a href="mailto:admin@nomail.com?Subject=Hello">email</a>
With the mod as it is now the subject line doesn't parse even if inside <a href="mailto: tags. I would like to be able use ?Subject= (or body, cc, etc.) while still affording regular users the convenience of autolinking *@*
[This message has been edited by musicvid (edited December 29, 2004).]