I'm trying to use this module: Mail-Sender 0.7.13.1, from Jenda K's page.
with this code:
 
use Mail::Sender;
 $sender = new Mail::Sender {smtp => 'localhost',
from => '[EMAIL PROTECTED]'};
 $sender->MailFile({to => '[EMAIL PROTECTED]',
  subject => 'Here is the file',
  msg => "I'm sending you the list you wanted.",
  file => 'filename.txt'});
 
also from the page.
I run it and it doesn�t give any error messages, but the message doesn�t appear in the queue. I�m using IIS.

Reply via email to