Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: erreur : "HASH(0x97f5b20)" is not exported by

by ferreira (Chaplain)
on Jun 27, 2007 at 11:09 UTC ( [id://623585]=note: print w/replies, xml ) Need Help??


in reply to erreur : "HASH(0x97f5b20)" is not exported by

Look closer to the synopsis of Mail::Sender (here). It reads as:
use Mail::Sender; $sender = new Mail::Sender {smtp => 'mail.yourdomain.com', from => 'your@address.com'}; $sender->MailFile({to => 'some@address.com', subject => 'Here is the file', msg => "I'm sending you the list you wanted.", file => 'filename.txt'});

So the problem is that you are passing to use Mail::Sender the arguments that should go into Mail::Sender->new. When you do that, the import method of Mail::Sender which expected symbols to be imported into the caller package, tries to do that with the stringification of the hash ref you passed. And then

"HASH(0x97f5b20)" is not exported by the Mail::Sender module...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://623585]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-04-25 18:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found