Function: mm-insert-multipart-headers

mm-insert-multipart-headers is a byte-compiled function defined in mm-encode.el.gz.

Signature

(mm-insert-multipart-headers)

Documentation

Insert multipart/mixed headers.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/mm-encode.el.gz
(defun mm-insert-multipart-headers ()
  "Insert multipart/mixed headers."
  (let ((boundary "=-=-="))
    (insert "MIME-Version: 1.0\n")
    (insert "Content-Type: multipart/mixed; boundary=\"" boundary "\"\n")
    boundary))