Next: Displaying rich-text messages, Previous: Attachments, Up: Message view [Contents]
It is possible to show images inline in the message view buffer if you run emacs
in GUI-mode. You can enable this by setting the variable mu4e-view-show-images to
t. Since emacs does not always handle images correctly, this is not enabled
by default. If you are using emacs 24 with ImageMagick25 support, make sure you call
imagemagick-register-types in your configuration, so it is used for images.
;; enable inline images (setq mu4e-view-show-images t) ;; use imagemagick, if available (when (fboundp 'imagemagick-register-types) (imagemagick-register-types))