PerlRocks6345 has asked for the wisdom of the Perl Monks concerning the following question:
Hi Monks,I am at a situation to use Mail::Outlook only to send mail.When i send a mail it gets saved in my outbox and the following message gets displayed
OLE exception from "Microsoft Outlook": The item has been moved or deleted. Win32::OLE(0.1709) error 0x80020009: "Exception occurred" in PROPERTYPUT "To" at C:/Perl/site/lib/Mail/Outlook/Message.pm line 380
This is my code..Any suggession will be usefull.Thank you Monks!!!
use strict; use warnings; use Data::Dump; use Mail::Outlook; use Win32::OLE::Const 'Microsoft Outlook'; Win32::OLE->Option(Warn => 3); my $outlook = new Mail::Outlook('Inbox'); my $file = "D:/TEMP2/Text1.txt"; my $message = $outlook->create(); $message->To('me@company.com'); $message->Subject('Test'); $message->Body('Test Message'); $message->Attach($file); $message->send; dd [ $message->display ];
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Trouble using Mail::Outlook
by ColonelPanic (Friar) on Dec 04, 2012 at 09:57 UTC | |
by PerlRocks6345 (Novice) on Dec 04, 2012 at 10:43 UTC | |
by marto (Cardinal) on Dec 04, 2012 at 10:48 UTC | |
by ColonelPanic (Friar) on Dec 04, 2012 at 10:46 UTC |