Function: rmail-mailing-list-post

rmail-mailing-list-post is an interactive and byte-compiled function defined in rmail.el.gz.

Signature

(rmail-mailing-list-post)

Documentation

Post a message to the mailing list which delivered the current message.

This command starts composing an email message to the mailing list. Fill the Subject and the body of the message. When the message is ready, send it as usual, via your MUA's send-email command.

Probably introduced at or before Emacs version 30.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rmail.el.gz
(defun rmail-mailing-list-post ()
  "Post a message to the mailing list which delivered the current message.
This command starts composing an email message to the mailing list.
Fill the Subject and the body of the message.  When the message is
ready, send it as usual, via your MUA's send-email command."
  (interactive nil rmail-mode)
  (rmail--mailing-list-message 'post))