Help for this page

Select Code to Download


  1. or download this
    my $Item;
    my $Atmt;
    ...
    foreach (in $Inbox->Items) {
       foreach (in $Atmt->Item->Attachments) {
    
  2. or download this
    foreach my $Item (in $Inbox->Items) {
       foreach my $Atmt (in $Item->Attachments) {
    
  3. or download this
    undef $Atmt;
    undef $Item;
    undef $ns;
    
  4. or download this
    #! perl
    
    ...
          }
       }
    }