Perl: Win32::OLE and Microsoft Outlook - Iterating through email attachments efficiently

后端 未结 2 1758
野趣味
野趣味 2021-01-13 07:46

I\'m an intern and very new to this...

My boss gets an email with two attachments every Monday which he has to turn into wiki code and put it on our internal website

2条回答
  •  一向
    一向 (楼主)
    2021-01-13 08:21

    Try something like this

    foreach my $msg (reverse @{$Folder->{items}})
    

    don't use "in" in perl

提交回复
热议问题