Function: feedmail-queue-express-to-queue
feedmail-queue-express-to-queue is an interactive and byte-compiled
function defined in feedmail.el.gz.
Signature
(feedmail-queue-express-to-queue)
Documentation
Send message directly to the queue, with a minimum of fuss and bother.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mail/feedmail.el.gz
;; From a VM mailing list discussion and some suggestions from Samuel Mikes <smikes@alumni.hmc.edu>
(defun feedmail-queue-express-to-queue ()
"Send message directly to the queue, with a minimum of fuss and bother."
(interactive)
(feedmail-say-debug ">in-> feedmail-queue-express-to-queue")
(run-hooks 'feedmail-queue-express-hook)
(let ((feedmail-enable-queue t)
(feedmail-ask-before-queue nil)
(feedmail-queue-reminder-alist nil)
(feedmail-queue-chatty-sit-for 0))
(feedmail-send-it)
)
)