Function: mml-insert-part
mml-insert-part is an interactive and byte-compiled function defined
in mml.el.gz.
Signature
(mml-insert-part &optional TYPE)
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/mml.el.gz
(defun mml-insert-part (&optional type)
(interactive (if (message-in-body-p)
(list (mml-minibuffer-read-type ""))
(error "Use this command in the message body")))
;; When using Mail mode, make sure it does the mime encoding
;; when you send the message.
(or (eq mail-user-agent 'message-user-agent)
(setq mail-encode-mml t))
(mml-insert-tag 'part 'type type 'disposition "inline")
(save-excursion
(mml-insert-tag '/part)))