mgdfresh33 has asked for the wisdom of the Perl Monks concerning the following question:

This has been resolved.

Replies are listed 'Best First'.
Re: MIME::Lite emails
by Joost (Canon) on Jul 12, 2006 at 20:18 UTC
      That looks like it works great, Thank you!
Re: MIME::Lite emails
by Ieronim (Friar) on Jul 12, 2006 at 20:14 UTC
    Try to call
    MIME::Lite->quiet();
    before sending mail.

    I re-read the documentation of MIME::Lite. The send() method throws a exception only if called in void context.

    $msg->send || warn "There was an error!\n"
    But the way with catching exceptios is better.