【发布时间】:2013-04-28 11:57:20
【问题描述】:
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;
【问题讨论】:
-
您必须检查您的网络服务器日志以了解实际错误。