Gossamer Forum
Quote Reply
recip mod
i've done the recip mod and everything works except my email program (ms outlook) will not take the mailto link

what could i change in this to make it work ?

ID $link->{ID} <input TYPE=CHECKBOX NAME="delete" VALUE="$link->{ID}"></td><td bgcolor="#ffffff">
$link->{Title}: <a href="$url" target="_new">$url</a></td><td bgcolor="#ffffff"> - is not linking back
</td><td bgcolor="#ffffff"><a href="mailto:$link->{Contact_Email}?subject=Unable to verify reciprical link?body=$body">Send Email</a></br></td></tr>

regards dane



Quote Reply
Re: recip mod In reply to
I dont really understand your code; where is it?
It should be somewhere in a template; but then you work with the tags and not with some code from the script!

Or is it some code you pass directly from the script?
Then try on a normal html-page your code:

<a href="mailto:adress@email.com?something=something">

If this works fine, you should do it from script, too.

Another thing i remember when doing my send_to_a_friend-mod or the same for error-report is that one of the two main browsers couldnīt do something like:

lalala.htm?one=lala lalal alala

It must be:

lalala.htm?one=lala+lalal+alala

If this is your problem you need a rexep doing a transition of every ' ' (<- means space) to '+'
and maybe later another one doing the things back.

Try it with html to localize the error.

Robert