diff --git a/mu4e/mu4e-actions.el b/mu4e/mu4e-actions.el index c11c5ad3..8e682528 100644 --- a/mu4e/mu4e-actions.el +++ b/mu4e/mu4e-actions.el @@ -85,9 +85,12 @@ return the filename." (mu4e-error "No body part for this message")) (with-temp-buffer (insert "\n") - (insert (concat "

From: " (mu4e-html-construct-contacts-header msg :from) "
")) - (insert (concat "To: " (mu4e-html-construct-contacts-header msg :to) "
")) - (insert (concat "Date: " (format-time-string mu4e-view-date-format (mu4e-message-field msg :date)) "
")) + (insert (concat "

From: " + (mu4e~view-construct-contacts-header msg :from) "
")) + (insert (concat "To: " + (mu4e~view-construct-contacts-header msg :to) "
")) + (insert (concat "Date: " + (format-time-string mu4e-view-date-format (mu4e-message-field msg :date)) "
")) (insert (concat "Subject: " (mu4e-message-field msg :subject) "

")) (insert (or html (concat "
" txt "
"))) (write-file tmpfile)