in reply to Sending mail in outlook
is an object, not a hash ... as you are attempting to update. Maybe something along the lines of (untested as I don't have a Windoze box)my $item = $Outlook->CreateItem(0); # 0 = mail item.
. instead of$item->Subject($mail_props{'subject'} || '[No Subject]');
Just a thought ...$item->{'Subject'} = $mail_props{'subject'} || '[No Subject]';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Sending mail in outlook
by Anonymous Monk on Sep 14, 2009 at 22:42 UTC | |
by Bloodnok (Vicar) on Sep 14, 2009 at 22:48 UTC |