xywuyiba8 发表于 2018-8-31 12:14:43

Perl发送邮件模块比较

  
use Mail::Sendmail;
  %mail = ( To      => 'you@there.com',
  From    => 'me@here.com',
  Message => "This is a very short message"
  );
  sendmail(%mail) or die $Mail::Sendmail::error;
  print "OK. Log says:\n", $Mail::Sendmail::log;
  2.Mail::Sender
  这家伙能发送带附件的,不过得通过SMTP服务器,我测试了一下失败...
  找到一个例子是用网易的,不过我测试一下Login not accepted...好吧
  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.",
  3
  file => 'filename.txt'});
  3.找到MIME::Lite.
  初看一眼,丫看名字跟邮件好像关系不大.但是仔细一看丫貌似什么功能都有


页: [1]
查看完整版本: Perl发送邮件模块比较