I'm trying to send a link with a querystring as the body of an email
message. My HTML syntax looks something like this:
<a href="mailto:xx x@yyy.com?Subje ct=<? print $subject ?>&Body=<? print
urlencode($url) ?>">Send an Email</a>
(I've had to URLENCODE the variables first, and it works. If I don't
do so, then it doesn't work.)
The problem occurs when it is time to display the encoded version. It
automatically translates it into the appropriate URL in certain email
clients (like OUTLOOK) but leaves it encoded in others (like
Groupwise).
Basically, I would like to be able to email a link in the body with
querystring in such a way that it appears on ALL email clients. I've
tried lots of things, but nothing seems to work. Any suggestions?
message. My HTML syntax looks something like this:
<a href="mailto:xx x@yyy.com?Subje ct=<? print $subject ?>&Body=<? print
urlencode($url) ?>">Send an Email</a>
(I've had to URLENCODE the variables first, and it works. If I don't
do so, then it doesn't work.)
The problem occurs when it is time to display the encoded version. It
automatically translates it into the appropriate URL in certain email
clients (like OUTLOOK) but leaves it encoded in others (like
Groupwise).
Basically, I would like to be able to email a link in the body with
querystring in such a way that it appears on ALL email clients. I've
tried lots of things, but nothing seems to work. Any suggestions?
Comment