I have a cgi script that send a form when a user click on the submit button. I'm trying to make the <a href="website.html">click here</a> link active.
Not sure how to code it.
This is my part of my script:
********
print MAIL " Visit our site at <a href=\"website.html\">click here</a> ";
**********
When i received the form, the website.html link is not active and it looks like the above. Active as in I can click on the "click me" text and it will bring me to the website.html page.
I'm guessing that you actually see it without the backslashes:
Visit our site at <a href="website.html">click here</a>
Not like this:
Visit our site at <a href=\"website.html\">click here</a>
Right?
If the message is not being sent as being HTML formatted, or if your e-mail client doesn't display e-mail using HTML formatting, then you'll get what you see...
Bookmarks