Alright, I have this bit of code that's giving me some problems.
I'm passing two (or three, depending on it's usage) named parameters:
subject
message
to
if
to is not passed, it defaults to my email address. The other two, however, are required.
My problem is neither of the two required are being included in the email that is sent to whoever (at this time it is only me) the email is sent to.
The Mail class:
package PL::Mail;
use strict;
use Mail::Sendmail;
my $server = 'pop.dnvr.qwest.net';
my %mail;
sub new {
my $class = shift;
my $self = {};
$mail{Smtp} = $server;
$mail{From} = 'Postmaster <noreply@dhoss.cjb.net>';
$mail{To} = $self->{TO} ? $self->{TO} : 'Devin Austin
+ <devin.austin@gmail.com>';
$mail{Subject} = $self->{SUBJECT};
$mail{Message} = $self->{MESSAGE};
bless $self, $class;
return $self;
}
sub send {
my ($self, $user, $msg) = @_;
my $date = Mail::Sendmail::time_to_date();
$mail{Message} .= <<""
Message sent on $date
From $ENV{REMOTE_ADDR}
All information contained in this message do not reflect the
ideas of Devin Austin or MorningStarWeb and it's affiliates.
;
if (sendmail %mail) {
print STDERR $Mail::Sendmail::error;
} else {
print STDERR "Error sending mail ($date): $!";
}
}
How it's called:
my $obj = PL->new;
$obj->Mail->send(
subject => 'Comments from ' . $q->param('name'),
message => $msg
);
Any ideas, wise monks?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.