Function: message-mail-other-window
message-mail-other-window is an autoloaded, interactive and
byte-compiled function defined in message.el.gz.
Signature
(message-mail-other-window &optional TO SUBJECT)
Documentation
Like message-mail command, but display mail buffer in another window.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
;;;
;;; Interactive entry points for new message buffers.
;;;
;;;###autoload
(defun message-mail-other-window (&optional to subject)
"Like `message-mail' command, but display mail buffer in another window."
(interactive)
(unless (message-mail-user-agent)
(message-pop-to-buffer (message-buffer-name "mail" to)
'switch-to-buffer-other-window))
(let ((message-this-is-mail t))
(message-setup `((To . ,(or to "")) (Subject . ,(or subject "")))
nil nil nil 'switch-to-buffer-other-window)))