Function: rmail-summary-output-body

rmail-summary-output-body is an interactive and byte-compiled function defined in rmailsum.el.gz.

Signature

(rmail-summary-output-body &optional FILE-NAME)

Documentation

Write this message body to the file FILE-NAME.

FILE-NAME defaults, interactively, from the Subject field of the message.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rmailsum.el.gz
(defun rmail-summary-output-body (&optional file-name)
  "Write this message body to the file FILE-NAME.
FILE-NAME defaults, interactively, from the Subject field of the message."
  (interactive)
  (with-current-buffer rmail-buffer
    (let ((rmail-delete-after-output nil))
      (if file-name
	  (rmail-output-body-to-file file-name)
	(call-interactively 'rmail-output-body-to-file))))
  (if rmail-delete-after-output
      (rmail-summary-delete-forward nil)))