Function: mail-fcc
mail-fcc is an interactive and byte-compiled function defined in
sendmail.el.gz.
Signature
(mail-fcc FOLDER)
Documentation
Add a new Fcc field, with file name completion.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mail/sendmail.el.gz
(defun mail-fcc (folder)
"Add a new Fcc field, with file name completion."
(interactive "FFolder carbon copy: ")
(expand-abbrev)
(or (mail-position-on-field "fcc" t) ;Put new field after exiting Fcc.
(mail-position-on-field "to"))
(insert "\nFcc: " folder))