$sender->Open( ... ) or die "Error: $Mail::Sender::Error\n"; #### sub mymail { my( $to, $text ) = @_; eval { Local::Mail::send( $to, $text ); }; warn "Errors: $@\n" if $@; }