Variable: mml-generate-multipart-alist
mml-generate-multipart-alist is a customizable variable defined in
mml.el.gz.
Value
nil
Documentation
Alist of multipart generation functions.
Each entry has the form (NAME . FUNCTION), where NAME is a string containing the name of the part (without the leading "/multipart/"), FUNCTION is a Lisp function which is called to generate the part.
The Lisp function has to supply the appropriate MIME headers and the contents of this part.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/mml.el.gz
(defcustom mml-generate-multipart-alist nil
"Alist of multipart generation functions.
Each entry has the form (NAME . FUNCTION), where
NAME is a string containing the name of the part (without the
leading \"/multipart/\"),
FUNCTION is a Lisp function which is called to generate the part.
The Lisp function has to supply the appropriate MIME headers and the
contents of this part."
:group 'message
:type '(alist :key-type string :value-type function))