How can I send a hyperlink in email?
In this excerpt from
Answercast #21, I walk through the steps necessary to send a hyperlink in an
email.
]]>
<
One gotcha that can get you, is where is this hyperlink pointing. If it is something created inside your firewall with no access to the outside world, it won’t do any good to send out the hyperlink, because nobody else will be able to see it. We have that problem here at work. We have an intranet set up with a lot of information, and sometimes users don’t understand and try to send an internal link to someone on the outside and wonder why they can’t see it. Or someone is learning how to set up a web page, and is doing it internal to their own system, and sends a link to their friends so they can take a look at it, but the firewall keeps them from seeing it.
Another important “gotcha” — contructing links in PLAIN TEXT!!!
That can take some doing. The syntax must be precise (we ARE dealing with COMPUTERS, after all) or it just won’t work right!
Here’s the basic form. Copy it down to use as a template for future reference:
<a href="http://ask-leo.com"> Visit Ask Leo! </a>
Again, as Leo showed us above, http://ask-leo.com is the website you’re sending your correspondents to; the text “Visit Ask Leo!” is the clickable link that will be visible on the screen.
Notice the <a href=" that precedes, and the "> that follows, the website; and notice, too, the </a> that follows everything else. These are NECESSARY.
In other words, plug the website between the quotes, and the “link text” between the first > and the second <.
Hope this helps! 🙂
Important NOTE: I did NOT include the “Target=blank” in the above link! That was apparently inserted automatically by your system (and about time, BTW! — no more being taken off the current page when you click a user-entered link!). “Target=blank” is an advanced feature that I intentionally omitted from my instructions. Oh, well. Including it does no harm, except to make my instructions harder for those I address to understand!
One word of warning — not all mailers (or web forums) will accept links with “Target=Blank” in them. If you find that yours doesn’t, simply omit it. The link will work fine without it.
Oh yes — you DO want to know what “Target=Blank” DOES? It opens the link in a new, separate page, rather than taking you away from the page you’re already on. That’s all.
Again, hope this helps!