I have Html mail installed as well as all the recommended modules including Mail MIME. When Mail MIME is enabled, the images in the html don't show up on mobile phones. I get the broken link boxes. When I disable it, everything appears fine. Should this be happening? How do I fix it?

Comments

pillarsdotnet’s picture

Status: Active » Postponed (maintainer needs more info)

Are you using emogrifier?

What model is your mobile phone?

Seph’s picture

I am using Emogrifier and I have set up the filters in the order you suggested. I placed them in order after the existing filters with Pathologic last. I have an iphone. After doing some research, it seems that there was a similar issue with another module Mimemail. It related to changing the content type to multipart. Could this be similar? If it is..how to change it? I am pretty much a Drupal/Coding Newbie.

pillarsdotnet’s picture

Haven't had problems with iphones before, but I will test again. Can you forward or attach one of the problem messages?

pillarsdotnet’s picture

Status: Postponed (maintainer needs more info) » Active
Seph’s picture

I can forward it to you, just need to know where.

pillarsdotnet’s picture

My email address is pretty easy to find: bobvin@pillars.net

Seph’s picture

Sent

pillarsdotnet’s picture

Component: Code » Documentation
Assigned: Unassigned » pillarsdotnet
Category: bug » support

Here's your problem:

<td colspan="2" style="background-image:url(&quot;http://www.intl-alchemical.org/sites/default/files/images/header_top_separator.gif&quot;);background-repeat:no-repeat;height:7px;">

In your stylesheets, you need to remove the quote marks around the urls. In other words, you have something like:

.foo {
  background-image: url("sites/default/files/images/header_top_separator.gif")
}

But you should have:

.foo {
  background-image: url(sites/default/files/images/header_top_separator.gif)
}

I'll try to write up some documentation about this.

pillarsdotnet’s picture

Title: Images show as broken links on mobile phone when Mail MIME is enabled » When using emogrifier, need to remove quote-marks around urls in stylesheets.
Project: Mail MIME » Emogrifier
Version: 7.x-2.13 » 7.x-1.x-dev
Category: support » task
pillarsdotnet’s picture

Title: When using emogrifier, need to remove quote-marks around urls in stylesheets. » Emogrifier should remove quote-marks around urls in stylesheets.
pillarsdotnet’s picture

Component: Documentation » Code
Category: task » bug
Status: Active » Fixed
Seph’s picture

Thanks

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.