Thread Email Adressen aus Outlook auslesen (7 answers)
Opened by a_abels at 2010-12-10 11:41

a_abels
 2010-12-10 13:09
#143468 #143468
User since
2010-07-11
90 Artikel
BenutzerIn
[default_avatar]
Sorry, so geht es los:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl


use strict;
use warnings;

use Win32::OLE qw(in with);
use Win32::OLE::Const 'Microsoft Outlook';
$Win32::OLE::Warn = 0;

my $outlook = get_outlook();
my $mapi = $outlook->GetNamespace('MAPI');
my $default_folder = $mapi->GetDefaultFolder(olFolderContacts);


Ich interessiere mich ausschließlich für die Adressen.

mfg André

View full thread Email Adressen aus Outlook auslesen