If a Perl script wishes to interact with a printer on the network (hence Net::Printer) that speaks the Unix standard 'lpd' protocols, this is the module it would use. It's equivalent to some module that would let you use a network or locally installed printer under Windows.
Again, this is all local to where the script is being run. If the user/system that the script resides has no means to print to an arbitrary printer, a Perl script using this or any other module isn't going to be able to either. This has nothing to do with stuff on the client side. | [reply] |
thanks a lot for all the help
| [reply] |
thanks a lot for all the help
| [reply] |
I have a question regarding attachments. Will you be able to answer it to me. Thanks
How can you send attachments to email. I used sendmail to send emails. I was trying to use MIME::Lite to send attachments but it is giving me an error when i use the attach().
| [reply] |
How can you send attachments to email. I used sendmail to send emails. I was trying to use MIME::Lite to send attachments but it is giving me an error when i use the attach().
| [reply] |
MIME::Lite->send('smtp', "smtp.myisp.net", Timeout=>60);
$msg->send;
Otherwise, you're going to have to be a lot more verbose and specific about the problem you're having. | [reply] [d/l] |
| [reply] |