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 ];