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