Re: sendmail error: No reciient address found in header

2003-12-09 Thread Wiggins d Anconia
Please bottom post > I got it. I never thought indentation could cause sendmail to mess up. > As a beginner, I need you try > everything possible to know their pros and cons. Next time - I may > consider using a CPAN module. > :-) > > Thanks I would disagree here, as a beginner you shoul

Re: sendmail error: No reciient address found in header

2003-12-09 Thread B. Fongo
I got it. I never thought indentation could cause sendmail to mess up. As a beginner, I need you try everything possible to know their pros and cons. Next time - I may consider using a CPAN module. :-) Thanks Wiggins d'Anconia wrote: B. Fongo wrote: It's my first time to use sendmail. I want

Re: sendmail error

2001-12-13 Thread Akshay Arora
> use Mail:Sendmail; Try use Mail::Sendmail; # Two ::, not one -Akshay -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: sendmail error

2001-12-13 Thread Jose Vicente
I think you should have to use use Mail::Sendmail Bye.

Re: sendmail error

2001-12-13 Thread Jeff 'japhy' Pinyan
On Dec 13, Lance Prais said: >use Mail:Sendmail; use Mail::Sendmail; Notice the doubled colon. >%mail = ( To =>'[EMAIL PROTECTED]', >From=> 'Nobody', >Subject => 'Error', >Message => "my $data = for (1..21)" > ); I don't think M

Re: sendmail error

2001-12-13 Thread Francis Henry
Hi Lance: use Mail:Sendmail; should be use Mail::Sendmail; Have a good day, Francis Lance Prais wrote: > I am using the following piece of code to send email I can not figure out > why it errors out because it worked the other day and now it is not. I have > not changed anything on the syst