perlTech has asked for the wisdom of the Perl Monks concerning the following question:
Thanksmy $smtp = new Mail::Mailer 'smtp', Server => 111.11.1.111; my %headers = ('To' => '$YourEmail', 'From' => '$Email'); my $body = '$Message'; my $mailer = new Mail::Mailer->new($smtp, $YourEmail); $mailer ->open(\%headers); print $mailer $body; $mailer->close();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Can't modify require in scalar assignment
by dave_the_m (Monsignor) on Mar 09, 2005 at 12:21 UTC | |
|
Re: Can't modify require in scalar assignment
by Joost (Canon) on Mar 09, 2005 at 11:57 UTC | |
|
Re: Can't modify require in scalar assignment
by lidden (Curate) on Mar 09, 2005 at 11:57 UTC |