Variable: mh-before-send-letter-hook
mh-before-send-letter-hook is a customizable variable defined in
mh-e.el.gz.
Value
nil
Documentation
Hook run at the beginning of the C-c C-c (mh-send-letter) command.
For example, if you want to check your spelling in your message
before sending, add the ispell-message function.
This variable was added, or its default value changed, in MH-E version
6.0.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defcustom mh-before-send-letter-hook nil
"Hook run at the beginning of the \\<mh-letter-mode-map>\\[mh-send-letter] command.
For example, if you want to check your spelling in your message
before sending, add the `ispell-message' function."
:type 'hook
:options '(ispell-message)
:group 'mh-hooks
:group 'mh-letter
:package-version '(MH-E . "6.0"))