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
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
> use Mail:Sendmail;
Try
use Mail::Sendmail; # Two ::, not one
-Akshay
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
I think you should have to use
use Mail::Sendmail
Bye.
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
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