raggmopp has asked for the wisdom of the Perl Monks concerning the following question:
Working with perl 5.8.8 on RHEL 5 system.
A script I have sends email upon completion. In the text of the email I have the address of a system to connect to.
sftp joe@host.domain.com
A single line of text with the addy that is passed through a MAIL subroutine.
my $txt = "Connect to "sftp joe\@host.mydomain.com"Which is then fed to MAIL
print MAIL "$txt\n";When the mail arrives it has the hyperlink and underline. I want to get rid of the hyperlink and underline, just send plain text in quotes.
Many Thanks
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: remove @ link from perl generated email
by davido (Cardinal) on Apr 21, 2012 at 03:31 UTC | |
|
Re: remove @ link from perl generated email
by Nocturnus (Scribe) on Apr 22, 2012 at 07:45 UTC | |
by afoken (Chancellor) on Apr 22, 2012 at 10:21 UTC |