X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=emacs%2Fnotmuch-mua.el;h=7b0aa3154109608f3f11459f11437872e3edce51;hb=1a8aae6fa7be108819fa848df3dc98e1840f5eba;hp=c792732ba5530b8db856cb77393c18600de0702a;hpb=784649561abb627a9d81e4f718656dad0b6b6207;p=notmuch diff --git a/emacs/notmuch-mua.el b/emacs/notmuch-mua.el index c792732b..7b0aa315 100644 --- a/emacs/notmuch-mua.el +++ b/emacs/notmuch-mua.el @@ -172,6 +172,20 @@ the From: address first." (list (cons 'from (notmuch-mua-prompt-for-sender)))))) (notmuch-mua-mail nil nil other-headers))) +(defun notmuch-mua-new-forward-message (&optional prompt-for-sender) + "Invoke the notmuch message forwarding window. + +If PROMPT-FOR-SENDER is non-nil, the user will be prompted for +the From: address first." + (interactive "P") + (if prompt-for-sender + (let* ((sender (notmuch-mua-prompt-for-sender)) + (address-components (mail-extract-address-components sender)) + (user-full-name (car address-components)) + (user-mail-address (cadr address-components))) + (notmuch-mua-forward-message)) + (notmuch-mua-forward-message))) + (defun notmuch-mua-send-and-exit (&optional arg) (interactive "P") (message-send-and-exit arg))