Function: rmail-summary-forward

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

Signature

(rmail-summary-forward RESEND)

Documentation

Forward the current message to another user.

With prefix argument, "resend" the message instead of forwarding it; see the documentation of rmail-resend.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rmailsum.el.gz
(defun rmail-summary-forward (resend)
  "Forward the current message to another user.
With prefix argument, \"resend\" the message instead of forwarding it;
see the documentation of `rmail-resend'."
  (interactive "P")
  (save-excursion
    (let ((window (get-buffer-window rmail-buffer)))
      (if window
	  (select-window window)
	(set-buffer rmail-buffer)))
    (rmail-forward resend)
    (rmail-summary-override-mail-send-and-exit)))