M
Murugesh
Hi,
I tried the following code in Windows after installing Mail::Mailer module
#!/usr/bin/perl
use Mail::Mailer;
$from_address="map\@abcd.com";
$to_address="rek2345\@yahoo.com";
$subject="hi";
$mailer = Mail::Mailer->new();
$mailer->open({ From => $from_address,
To => $to_address,
Subject => $subject,
})
or die "Can't open: $!\n";
print $mailer $body;
$mailer->close();
when compiled it shows,
Died @C:\perl\site\lib/Mail/Mailer.pm
the same program works in Solaris.Could you help what is going on
Thanks,
Appu
I tried the following code in Windows after installing Mail::Mailer module
#!/usr/bin/perl
use Mail::Mailer;
$from_address="map\@abcd.com";
$to_address="rek2345\@yahoo.com";
$subject="hi";
$mailer = Mail::Mailer->new();
$mailer->open({ From => $from_address,
To => $to_address,
Subject => $subject,
})
or die "Can't open: $!\n";
print $mailer $body;
$mailer->close();
when compiled it shows,
Died @C:\perl\site\lib/Mail/Mailer.pm
the same program works in Solaris.Could you help what is going on
Thanks,
Appu