Help for this page

Select Code to Download


  1. or download this
    my $mail = Email::Simple->new($msg);
    my (%headers_i_care_about);
    ...
      # my $headers_i_care_about{$i_care_about} = 
      #     join(' ', $mail->header($i_care_about));
    }
    
  2. or download this
    my (%headers);
    my ($lastheader);
    ...
        $lastheader = $parts[0];
      }
    }