following mike king's suggestion I set up the example as in
Sender.pm.html, namely

use Mail::Sender ;
$sender = new Mail::Sender {smtp => 'mail.fyidiscoveryservices.com',
                            from => '[EMAIL PROTECTED]'};
$sender->Open({to => '[EMAIL PROTECTED]', subject =>
'Salutations'}) ;
$sender->SendLine("How are you?");
$sender->SendLine;
$sender->Close;

yields the same error message as in the prior example I had submitted:

Can't call method "Open" without a package or object reference at line 4

Any ideas? Thanks,
Jim Doyle
_______________________________________________
Perl-Win32-Web mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-web

Reply via email to