If you have an image with src such as "/images/test.jpg?1234", it doesn't get embedded because file_exists fails on line 139 of mimemail.inc

I fixed that by adding this code before the file_exists line:

if (isset($file) && strpos($file, '?') > 0)
$file = substr($file, 0, strpos($file, '?'));

Comments

sgabe’s picture

Version: 6.x-1.0-alpha7 » 6.x-1.x-dev

Could you attach a patch against the development snapshot, please?

tr’s picture

Issue summary: View changes
Status: Active » Closed (cannot reproduce)

No further information provided and Drupal 6 is long since out of support.

If you are still having this problem with the current version of Mime Mail please open a new issue with details of how to reproduce the problem.