Function: embark-compose-mail
embark-compose-mail is an interactive and byte-compiled function
defined in embark.el.
Signature
(embark-compose-mail ADDRESS)
Documentation
Compose email to ADDRESS.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defun embark-compose-mail (address)
"Compose email to ADDRESS."
;; The only reason we cannot use compose-mail directly is its
;; interactive specification, which just supplies nil for the
;; address (and several other arguments).
(interactive "sTo: ")
(compose-mail address))