Function: mail-cc
mail-cc is an interactive and byte-compiled function defined in
sendmail.el.gz.
Signature
(mail-cc)
Documentation
Move point to end of Cc field, creating it if necessary.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mail/sendmail.el.gz
(defun mail-cc ()
"Move point to end of Cc field, creating it if necessary."
(interactive)
(expand-abbrev)
(or (mail-position-on-field "cc" t)
(progn (mail-position-on-field "to")
(insert "\nCC: "))))