Variable: feedmail-queue-express-hook

feedmail-queue-express-hook is a customizable variable defined in feedmail.el.gz.

Value

nil

Documentation

Chance to modify a message being sent directly to a queue.

Run by feedmail-queue-express-to-queue and feedmail-queue-express-to-draft. For example, you might want to run vm-mime-encode-composition to take care of attachments. If you subsequently edit the message buffer, you can undo the encoding.

This variable was added, or its default value changed, in Emacs 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/feedmail.el.gz
(defcustom feedmail-queue-express-hook nil
  "Chance to modify a message being sent directly to a queue.
Run by feedmail-queue-express-to-queue and feedmail-queue-express-to-draft.
For example, you might want to run vm-mime-encode-composition to take
care of attachments.  If you subsequently edit the message buffer, you
can undo the encoding."
  :version "24.1"
  :group 'feedmail-queue
  :type 'hook
)