Function: mh-send-other-window

mh-send-other-window is an interactive and byte-compiled function defined in mh-comp.el.gz.

Signature

(mh-send-other-window TO CC SUBJECT)

Documentation

Compose a message in another window.

See mh-send for more information and a description of how the TO, CC, and SUBJECT arguments are used.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-comp.el.gz
(defun mh-send-other-window (to cc subject)
  "Compose a message in another window.

See `mh-send' for more information and a description of how the
TO, CC, and SUBJECT arguments are used."
  (interactive (list
                (mh-interactive-read-address "To: ")
                (mh-interactive-read-address "Cc: ")
                (mh-interactive-read-string "Subject: ")))
  (let ((pop-up-windows t))
    (mh-send-sub to cc subject (current-window-configuration))))