vagabonding electron has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl use strict; use warnings; use Mail::Outlook; use Win32::OLE::Const 'Microsoft Outlook'; my $outlook = new Mail::Outlook('Inbox'); my $file = "D:/TEMP/Text1.txt"; my $message = $outlook->create(); $message->To('me@mycompany.com'); $message->Subject('Test'); $message->Body('Test Message'); $message->Attach($file); $message->send;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Mail::Outlook - it works but without attachment
by Anonymous Monk on Aug 13, 2012 at 11:56 UTC | |
by vagabonding electron (Curate) on Aug 13, 2012 at 12:20 UTC | |
|
Re: Mail::Outlook - it works but without attachment
by Anonymous Monk on Aug 13, 2012 at 11:50 UTC | |
by Anonymous Monk on Jan 01, 2013 at 15:27 UTC |