Function: message-goto-from
message-goto-from is an interactive and byte-compiled function defined
in message.el.gz.
Signature
(message-goto-from)
Documentation
Move point to the From header.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defun message-goto-from ()
"Move point to the From header."
(interactive nil message-mode)
(push-mark)
(message-position-on-field "From"))