in reply to email through Exchange server using StrawberryPerl
You created an empty hash reference, and then tried to call its MailMsg method. It doesn't have such a method. You need an object with that method. As shown in the synopsis in the documentation, you should be able to do it like:
$sender = new Mail::Sender();
...roboticus
When your only tool is a hammer, all problems look like your thumb.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: email through Exchange server using StrawberryPerl
by sgmansell (Initiate) on Sep 30, 2014 at 19:07 UTC | |
by soonix (Chancellor) on Sep 30, 2014 at 21:58 UTC | |
by sgmansell (Initiate) on Oct 01, 2014 at 18:15 UTC | |
by soonix (Chancellor) on Oct 02, 2014 at 15:59 UTC | |
by roboticus (Chancellor) on Oct 01, 2014 at 00:04 UTC |