Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl -wT use strict; use CGI qw(:standard); # import most common gateway interface funct +ions use CGI::Carp qw(warningsToBrowser fatalsToBrowser); #cause all diagno +stics to be sent to browser use Mail::Sendmail; print header; print start_html("using Mail::Sendmail"); print "Thank you. Your email with hyperlink has been sent.\n"; my $recipient = "abc\@aol.com"; my $sender = "def\@aol.com"; my %mail = ( From => $sender, To => $recipient, Subject => "sending you mail" ); $mail{Message} = "Here is the hyperlink you requested.\n"; $mail{Message} .= ????? sendmail (%mail); print end_html;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: embedding hyperlink using Mail::Sendmail
by derby (Abbot) on Aug 26, 2005 at 01:04 UTC | |
by jhourcle (Prior) on Aug 26, 2005 at 01:15 UTC | |
by derby (Abbot) on Aug 26, 2005 at 13:53 UTC | |
by jhourcle (Prior) on Aug 26, 2005 at 15:26 UTC |