Oh Wise Ones, I Am again in need of your assistance.
I have this code that will read emails in a public folder and parse through them looking for strings. I am stuck though and have not found any information on how to move them to another folder. Can Anyone please help? It would me much appreciated.
(I've done google searches and looked at www.microsoft.com/outlookdev and i can't really find what i'm looking for.)
Thanks again,
Ray
#!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;
}
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.