RayRay459 has asked for the wisdom of the Perl Monks concerning the following question:
#!D:/perl/bin/perl -w use strict; use Win32::OLE qw(in with); use Win32::OLE::Const 'Microsoft Outlook'; my($Outlook, $ol, $namespace, $Folder1, $Folder2, $Folder3, $Folder4, +$Folder5, $item, $body); $|++; $Win32::OLE::Warn = 3; $Outlook = Win32::OLE->GetActiveObject('Outlook.Application') or Win32 +::OLE->new('Outlook.Application', 'Quit'); $ol = Win32::OLE::Const->Load($Outlook); $namespace = $Outlook->GetNameSpace("MAPI") or die "Can't open MAPI na +mespace: $!"; $Folder1 = $namespace->Folders("Public Folders"); $Folder2 = $Folder1->Folders("All Public Folders"); $Folder3 = $Folder2->Folders("Ops"); $Folder4 = $Folder3->Folders("Search"); $Folder5 = $Folder4->Folders("Been Read"); foreach $item (in $Folder4->{Items}){ $body = $item->{Body}; if($body =~ /ALL\s+TESTS\s+SUCCESSFUL/i){ print $item->{Subject} . " ok\n"; # This is where i would want a statement to move the item to $Fold +er5 }elsif($body =~ /Ending/i && $body !~/Abort/i){ print $item->{Subject} . " ok\n"; }else{ print "possible error on indexer for $item->{Subject}.\n"; next; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: moving emails between folders with Win32::OLE
by strat (Canon) on May 14, 2002 at 15:22 UTC | |
by RayRay459 (Pilgrim) on May 14, 2002 at 15:36 UTC | |
by strat (Canon) on May 14, 2002 at 15:52 UTC | |
by RayRay459 (Pilgrim) on May 14, 2002 at 16:50 UTC | |
by RayRay459 (Pilgrim) on May 14, 2002 at 17:40 UTC | |
by Anonymous Monk on Sep 12, 2011 at 11:06 UTC |