Function: rmail-summary-reply

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

Signature

(rmail-summary-reply JUST-SENDER)

Documentation

Reply to the current message.

Normally include Cc: to all other recipients of original message; prefix argument means ignore them. While composing the reply, use M-x mail-yank-original (mail-yank-original) to yank the original message into it.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rmailsum.el.gz
(defun rmail-summary-reply (just-sender)
  "Reply to the current message.
Normally include Cc: to all other recipients of original message;
prefix argument means ignore them.  While composing the reply,
use \\[mail-yank-original] to yank the original message into it."
  (interactive "P")
  (let ((window (get-buffer-window rmail-buffer)))
    (if window
	(select-window window)
      (set-buffer rmail-buffer)))
  (rmail-reply just-sender)
  (rmail-summary-override-mail-send-and-exit))