in reply to MIME::Lite emails

I haven't used MIME::Lite's SMTP transport, but usually you can trap fatal exceptions by using an eval BLOCK construct:
eval { $msg->send('smtp','mail.shs.siemens.com'); }; warn "Trapped error: $@\n" if $@; # code continues here

Replies are listed 'Best First'.
Re^2: MIME::Lite emails
by mgdfresh33 (Initiate) on Jul 12, 2006 at 20:38 UTC
    That looks like it works great, Thank you!