home *** CD-ROM | disk | FTP | other *** search
- package Mail::Mailer::rfc822;
- use vars qw(@ISA);
- @ISA = qw(Mail::Mailer);
-
- sub set_headers {
- my $self = shift;
- my $hdrs = shift;
- local($\)="";
- foreach(keys %$hdrs) {
- next unless m/^[A-Z]/;
-
- my ($h);
- foreach $h ($self->to_array($hdrs->{$_}))
- { $h =~ s/\n+\Z//;
- print $self "$_: ", $h, "\n";
- }
- }
- print $self "\n"; # terminate headers
- }
-
- 1;
-