in reply to Re: MIME::LITE Email Confirmation
in thread MIME::LITE Email Confirmation

If is use the following: $msg->send(); if ($msg eq "true") { print "Sent"; } I still do not see any confirmation. Thanks, Tommy

Replies are listed 'Best First'.
Re^3: MIME::LITE Email Confirmation
by ides (Deacon) on Aug 22, 2007 at 15:44 UTC

    You can't use the string 'true' like that. Here $msg is your MIME::Lite object, not a string. You need to do:

    if( $msg->send() ) { print "Sent"; }

    Frank Wiles <frank@revsys.com>
    www.revsys.com