AFAIK, Thunderbird does not display images in emails because of security settings. If you open Tools->Options->Privacy Tab->General and check "Block loading of remote images in mail messages" option.
Sincerely, Alex On 8/13/07, Michael Baerwolf <[EMAIL PROTECTED]> wrote: > I'm trying to add linked images to an email. Using Zend_Mail > > $body = '<html><head></head> > <body><table width=100% border=0 cellpadding=0 cellspacing=0> > <tr> > <td width=19%><img > src=http://www.something.com/images/image.jpg> </td> > </table></body></html>'; > $subject = 'test'; > $email = '[EMAIL PROTECTED]; > $mail = new Zend_Mail (); > $mail->setFrom ([EMAIL PROTECTED]); > $mail->addTo ($email); > $mail->setSubject ($subject); > $mail->setBodyHtml ($body); > try { > $mail->send(); > } catch (Exception $e) { > echo $e; > } > > This does not display the image in the email using Thunderbird as the > email client. Can anyone point me in the right direction? > > Thanks in advance for the help, > Mike > > > > -- http://www.alexatnet.com/ - consulting, blog, articles and support for PHP, ZF, JavaScript and web development.
