]> rtime.felk.cvut.cz Git - notmuch.git/blobdiff - emacs/notmuch-mua.el
emacs: make use of `message-make-from'
[notmuch.git] / emacs / notmuch-mua.el
index cfdac0ef803a1f86b0a6e8d9317ee4519aecb92b..935cbd3b6298607e576fd946eec021c03f715e28 100644 (file)
@@ -318,8 +318,8 @@ modified. This function is notmuch addaptation of
        (push (cons 'User-Agent user-agent) other-headers))))
 
   (unless (assq 'From other-headers)
-    (push (cons 'From (concat
-                      (notmuch-user-name) " <" (notmuch-user-primary-email) ">")) other-headers))
+    (push (cons 'From (message-make-from
+                      (notmuch-user-name) (notmuch-user-primary-email))) other-headers))
 
   (notmuch-mua-pop-to-buffer (message-buffer-name "mail" to)
                             (or switch-function (notmuch-mua-get-switch-function)))
@@ -393,7 +393,7 @@ the From: header is already filled in by notmuch."
            (ido-completing-read (concat "Sender address for " name ": ") addrs
                                 nil nil nil 'notmuch-mua-sender-history
                                 (car addrs))))
-      (concat name " <" address ">"))))
+      (message-make-from name address))))
 
 (put 'notmuch-mua-new-mail 'notmuch-prefix-doc "... and prompt for sender")
 (defun notmuch-mua-new-mail (&optional prompt-for-sender)