in reply to Changing the 'From:' header with Mail::Mailer
So, as others have suggested, use a different module (there are many {grin}) or be sure to specify an underlying mailer that can control the From, such as with:
ormy $mailer = Mail::Mailer->new("sendmail");
my $mailer = Mail::Mailer->new("smtp");
-- Randal L. Schwartz, Perl hacker
|
|---|