I am using mime::lite to send emails with 4 attachments. The script has been working successfully for some time. However, now it has stopped working with the only change that I can notice is that the attachment size is now about 15mb. If I remove the largest file, it again works perfectly. Is there any error feature in mime::lite that will tell the smtp responss to see why mail is not being sent. I tried the following
$res_str=MIME::Lite->send('smtp','mailsrv',Timeout=>60);
$res_str=$msg->send;
The first res_str is 2, the second is 1 which to means success in both.
Does mime::lite have any size restrictionis?
Mail by directly attaching the documents to a mail messages works perfectly so I assume it is not a gatway size restriction.