Function: rmail-mime-bulk-handler

rmail-mime-bulk-handler is a byte-compiled function defined in rmailmm.el.gz.

Signature

(rmail-mime-bulk-handler CONTENT-TYPE CONTENT-DISPOSITION CONTENT-TRANSFER-ENCODING)

Documentation

Handle the current buffer as an attachment to download.

For images that Emacs is capable of displaying, the behavior depends upon the value of rmail-mime-show-images.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rmailmm.el.gz
(defun rmail-mime-bulk-handler (content-type
				content-disposition
				content-transfer-encoding)
  "Handle the current buffer as an attachment to download.
For images that Emacs is capable of displaying, the behavior
depends upon the value of `rmail-mime-show-images'."
  (rmail-mime-insert-bulk
   (rmail-mime-entity content-type content-disposition content-transfer-encoding
		      (vector (rmail-mime--make-display nil nil nil)
                              (rmail-mime--make-display nil t nil))
		      (vector nil nil nil) (vector "" (cons nil nil) t)
		      (vector nil nil nil) nil 'rmail-mime-insert-bulk)))