Function: message-send-mail-with-mailclient
message-send-mail-with-mailclient is a byte-compiled function defined
in message.el.gz.
This function is obsolete since 27.1; use
message-use-send-mail-function instead.
Signature
(message-send-mail-with-mailclient)
Documentation
Send the prepared message buffer with mailclient-send-it.
The only difference from mailclient-send-it is that this
command evaluates message-send-mail-hook just before sending a message.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defun message-send-mail-with-mailclient ()
"Send the prepared message buffer with `mailclient-send-it'.
The only difference from `mailclient-send-it' is that this
command evaluates `message-send-mail-hook' just before sending a message."
(declare (obsolete message-use-send-mail-function "27.1"))
(run-hooks 'message-send-mail-hook)
(mailclient-send-it))