davidov0009 has asked for the wisdom of the Perl Monks concerning the following question:
The error states that I have only used $Mail::SendMail::error and $Mail::SendMail::log once duringuse strict; use diagnostics; use Mail::SendMail; my %mail=( To => 'xxxxxxx@xxxxxx.com', From => 'yyyyyyy@hyyyyy.edu', Message => "Message Body" ); sendmail(%mail) or die $Mail::SendMail::error; print "Log Message:\n", $Mail::SendMail::log;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Strict error on var when using Mail::SendMail
by ikegami (Patriarch) on Mar 22, 2007 at 04:26 UTC | |
|
Re: Strict error on var when using Mail::SendMail
by rhesa (Vicar) on Mar 22, 2007 at 04:27 UTC | |
by ikegami (Patriarch) on Mar 22, 2007 at 06:13 UTC | |
|
Re: Strict error on var when using Mail::SendMail
by arc_of_descent (Hermit) on Mar 22, 2007 at 11:59 UTC | |
|
Re: Strict error on var when using Mail::SendMail
by Herkum (Parson) on Mar 22, 2007 at 14:11 UTC | |
|
Re: Strict error on var when using Mail::SendMail
by 13warrior (Acolyte) on Mar 22, 2007 at 18:53 UTC | |
by Anonymous Monk on Mar 23, 2007 at 00:18 UTC | |
by arc_of_descent (Hermit) on Mar 23, 2007 at 06:43 UTC |