Fuism has asked for the wisdom of the Perl Monks concerning the following question:
Thanks in advance, Fuismuse Win32::OLE; $mail = new Win32::OLE('Outlook.Application'); $mail->{'Visible'} = 1; $item = $mail->CreateItem(0); $item->{'Subject'} = "This is a test"; $item->{'To'} = "name\@comp.com"; $item->{'Body'} = "Here is the meat of the message"; $item->{'Attachments'} = $attachments; ## I'd assume this would work b +ut it doesnt... $item->Send(); #$mail->Quit();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Win32:OLE using Outlook
by rjbs (Pilgrim) on Sep 21, 2004 at 18:45 UTC | |
by Fuism (Beadle) on Sep 21, 2004 at 18:57 UTC |