report email fails (from a support contributor:
Quick fix.
In the file Subs-Post.php, find:
$str_attachments = '';
if (count($attachments) >= 1)
Replace:
$str_attachments = '';
if(!is_array($attachments))
$attachments = array();
if (count($attachments) >= 1)