Function: rmail-summary-mail

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

Signature

(rmail-summary-mail)

Documentation

Send mail in another window.

While composing the message, 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-mail ()
  "Send mail in another window.
While composing the message, use \\[mail-yank-original] to yank the
original message into it."
  (interactive)
  (let ((window (get-buffer-window rmail-buffer)))
    (if window
	(select-window window)
      (set-buffer rmail-buffer)))
  (rmail-start-mail nil nil nil nil nil (current-buffer))
  (rmail-summary-override-mail-send-and-exit))