in reply to Inserting a hyperlink

You're writing a plain text (i.e. normal) email, so you can't explicitly add links.

What you can do is insert a URL in the plain text, surrounded by whitespace, and preferably on a new line (for word wrap issues), and expect the vast majority of email clients to recognise it as a URL and turn it into a link for you.

my $message_body = "This is a list of things to bring\n" . "Fresh flowers from Flowershop X\n" . " http://www.example.com/flowers/\n\n" . "Today's Arragement instructions from instruciton home page\n" . " http://www.example.com/arrangement/\n\n";

Replies are listed 'Best First'.
Re^2: Inserting a hyperlink
by rio (Initiate) on Nov 22, 2006 at 11:30 UTC
    dorward Works a charm. Thanks. I'm wondering if there's a easy way to insert a hyperlink that can be clicked directly. Anyway. Thanks a bunch.

      You have a choice. Firstly, you can send a plain text attachment that contains the URL. As doward explained, most modern mail programs will recognise the the URL and turn it into a clickable link when the mail is displayed. In this case, your mail looks like this:

      my $message_body = <<END_OF_BODY; This is a list of things to bring * Fresh flowers from Flowershop X http://www.example.com/flowers * Today's Arrangement instructions from instruction home page http://www.example.com/arrangement/ END_OF_BODY

      That's the only way it can work in plain text. You can just include the URL and rely on the mail program to make it clickable.

      Alternatively, you can create a HTML version of the mail which contains real <a> tags. In this case, your mail looks something like this:

      my $message_body = <<END_OF_BODY; <p>This is a list of things to bring</p> <ul> <li>Fresh flowers from <a href="http://www.example.com/flowers/">Flowe +rshop X</a></li> <li>Today's Arrangement instructions from <a href="http://www.example. +com/arrangement/">instruction home page</a></li> </ul> END_OF_BODY

      In this second example, you would need to set the content type of the attachment as 'text/html' so that the mail program that is displaying it knows how to treat it.

      As several people have mentioned in this thread, if you want HTML mail, then the best approach is to have two attachments, one of which is an HTML version and the other of which is the plain text version. In this case, you need to find out how your Mail-building module of choice (and I can only repeat once more my recommendation for the Perl Email Project) builds MIME messages with more than one attachment.

      --
      <http://dave.org.uk>

      "The first rule of Perl club is you do not talk about Perl club."
      -- Chip Salzenberg