Function: message-smtpmail-send-it

message-smtpmail-send-it 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-smtpmail-send-it)

Documentation

Send the prepared message buffer with smtpmail-send-it.

The only difference from smtpmail-send-it is that this command evaluates message-send-mail-hook just before sending a message. It is useful if your ISP requires the POP-before-SMTP authentication. See the Gnus manual for details.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defun message-smtpmail-send-it ()
  "Send the prepared message buffer with `smtpmail-send-it'.
The only difference from `smtpmail-send-it' is that this command
evaluates `message-send-mail-hook' just before sending a message.
It is useful if your ISP requires the POP-before-SMTP
authentication.  See the Gnus manual for details."
  (declare (obsolete message-use-send-mail-function "27.1"))
  (run-hooks 'message-send-mail-hook)
  (smtpmail-send-it))