Hi All,

I want to send mail thru perl.
And the content is supposed to have hyperlink.
Just one word lke, "FAQ" is supposed to have link to some url.

I am trying like this, but I am not getting hyperlink on word FAQ.

Can any one help here ?

Thank You.


sub send_mail
{
  my ($to_email, $subject, $message) = @_;

open(MAIL, "|/bin/mailx -t");
print MAIL <<"EOM";
To: $to_email
from: [EMAIL PROTECTED]
Subject: $subject
EOM
  print MAIL "\n$message\n";
  print MAIL "\n For questions about OnTrac,please contact Product
Information or review our <a
href="http://pubsys.pearsoned.com/groups/product_information/OnTrac/ontrac_f
aq.html">FAQ</a>" ;
 \n" ;
  close MAIL;
  return 0;
}


Disclaimer: 

This message and any attachment(s) contained here are information that is
confidential,proprietary to HCL Technologies and its customers, privileged
or otherwise protected by law.The information is solely intended for the
individual or the entity it is addressed to. If you are not the intended
recipient of this message, you are not authorized to read, forward,
print,retain, copy or disseminate this message or any part of it. If you
have received this e-mail in error, please notify the sender immediately by
return e-mail and delete it from your computer.



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to