perltrick has asked for the wisdom of the Perl Monks concerning the following question:
So the question, Outlook pops up a warning message indicating that a program is attempting to send an email. Yes is 'grayed' out for 5 seconds, then becomes available, when clicked, the email is successfully sent and received by all addressees. How does one set security parameters to avoid the need for user input to send the message?my $Outlook = new Win32::OLE('Outlook.Application'); my $item = $Outlook->CreateItem(0); # 0 = mail item. .... fill in properties ... ... $item->send();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: OLE::Win32 Mail Item->send Warning
by NetWallah (Canon) on Mar 01, 2010 at 17:37 UTC | |
|
Re: OLE::Win32 Mail Item->send Warning
by jrsimmon (Hermit) on Mar 01, 2010 at 19:58 UTC | |
|
Re: OLE::Win32 Mail Item->send Warning
by jand (Friar) on Mar 02, 2010 at 08:37 UTC |