Help for this page

Select Code to Download


  1. or download this
    my $body = $fdf->_fdf_header;
      foreach (sort keys %{$fdf->content}) {
      $body .= sprintf ($fdf->_fdf_field_formatstr,
    ...
            Data => $body;
            Disposition => 'attachment'
                     );
    
  2. or download this
    my $msg = MIME::Lite->new(
                     From    =>$cfg->Email,
                     To      =>$cfg->To,
    ...
            Data => $body_encrypted,
            Disposition => 'attachment'
                     );