Function: message-insert-disposition-notification-to

message-insert-disposition-notification-to is an interactive and byte-compiled function defined in message.el.gz.

Signature

(message-insert-disposition-notification-to)

Documentation

Request a disposition notification (return receipt) to this message.

Note that this should not be used in newsgroups.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defun message-insert-disposition-notification-to ()
  "Request a disposition notification (return receipt) to this message.
Note that this should not be used in newsgroups."
  (interactive nil message-mode)
  (save-excursion
    (save-restriction
      (message-narrow-to-headers)
      (message-remove-header "Disposition-Notification-To"))
    (message-goto-eoh)
    (insert (format "Disposition-Notification-To: %s\n"
		    (or (message-field-value "Reply-To")
			(message-field-value "From")
			(message-make-from))))))