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