Function: mail-bcc

mail-bcc is an interactive and byte-compiled function defined in sendmail.el.gz.

Signature

(mail-bcc)

Documentation

Move point to end of Bcc field, creating it if necessary.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mail/sendmail.el.gz
(defun mail-bcc ()
  "Move point to end of Bcc field, creating it if necessary."
  (interactive)
  (expand-abbrev)
  (or (mail-position-on-field "bcc" t)
      (progn (mail-position-on-field "to")
	     (insert "\nBcc: "))))