Re: Problem of general running of simple perl program.

2012-11-05 Thread John Delacour
On 05/11/2012 03:01, hong zeng wrote: When I run the send_email example on the website, I got some warning like this...I am really a beginner so I don't know where to find the answer so I post here. Thank you guys. ece% perl ./perl_test/send_email.pl Can't locate Email/MIME.pm in @INC (@INC con

Re: Problem of general running of simple perl program.

2012-11-04 Thread Hal Wigoda
Download it and put it one of the directories in your @INC . On Sun, Nov 4, 2012 at 9:28 PM, Feng He wrote: > Seems this one: > http://search.cpan.org/~rjbs/Email-MIME-1.911/lib/Email/MIME.pm > > > 于 2012-11-5 11:22, hong zeng 写道: >> >> Where should I write this module and how? >> >> On Sun, Nov

Re: Problem of general running of simple perl program.

2012-11-04 Thread Feng He
Seems this one: http://search.cpan.org/~rjbs/Email-MIME-1.911/lib/Email/MIME.pm 于 2012-11-5 11:22, hong zeng 写道: Where should I write this module and how? On Sun, Nov 4, 2012 at 10:10 PM, Feng He wrote: >You have lost the module named as Email::MIME. > -- To unsubscribe, e-mail: beginners

Re: Problem of general running of simple perl program.

2012-11-04 Thread Hal Wigoda
Your script requires perl module Email/MIME.pm, Either variable @INC ( included librarries ) is not properly defined or set or the module is not present on your machine and needs to be loaded from CPAN. On Sun, Nov 4, 2012 at 9:01 PM, hong zeng wrote: > Hi, > > When I run the send_email example

Re: Problem of general running of simple perl program.

2012-11-04 Thread Feng He
You have lost the module named as Email::MIME. 于 2012-11-5 11:01, hong zeng 写道: Hi, When I run the send_email example on the website, I got some warning like this...I am really a beginner so I don't know where to find the answer so I post here. Thank you guys. ece% perl ./perl_test/send_emai