Since you already have the headers and the MIME stuff done you don't need the power of Mail::Sender or MIME::Lite, but the low-levelness of Net::SMTP.
You should be able to change the To: address inside the email and then use just
use Net::SMTP; $smtp = Net::SMTP->new('mailhost', Timeout => 60); $smtp->mail($from_address); $smtp->to($to_address); $smtp->data(); $smtp->datasend($the_email_with_headers); $smtp->dataend(); $smtp->quit;
Jenda
In reply to Re: Resending a complete e-mail
by Jenda
in thread Resending a complete e-mail
by jplindstrom
For: | Use: | ||
& | & | ||
< | < | ||
> | > | ||
[ | [ | ||
] | ] |