500 附加文件时出现内部服务器错误,但在不带附件的情况下发送。
use MIME::Lite;
$msg = MIME::Lite->new(
From =>'email@domain.com',
To =>'email@domain2.com',
Subject =>'A message with 2 parts...',
CC => '',
Type =>'TEXT',
Data =>'Thank you for your interest in'
);
### If I comment out the following attachment code the email sends OK, otherwise i get 500 internal server error
$msg->attach(
Type =>'image/gif',
Path =>'/images/tree.gif',
Filename =>'tree.gif',
Disposition => 'attachment'
)or die "error attaching file\n";
$msg->send;