Found a fix.
goto: /postie/postie-functions.php
Search for:
case ‘image’:
And inside that case statement there is a line:
$attachments[“html”][$filename] = parseTemplate($file_id, $part->ctype_primary, $imagetemplate);
Replace that line with
$attachments[“html”][$filename] .= parseTemplate($file_id, $part->ctype_primary,
$imagetemplate);
That should fix it!
I think there is similar bug with audio.. but not sure since i dont use that feature… if you are having the same problem, Just add in the period by the equals sign like i did for images