org-mime: insert contents *before* signature

Thanks to Rainer M. Krug for reporting

* contrib/lisp/org-mime.el (org-mime-org-buffer-htmlize): Insert
  contents *before* signature.
This commit is contained in:
Eric Schulte 2010-12-16 18:18:24 -07:00
parent 3c66db85f0
commit 943b6701c4
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ handling with appropriate MIME encoding."
(html (org-mime-apply-html-hook (car html-and-images))))
;; dump the exported html into a fresh message buffer
(reporter-compose-outgoing)
(goto-char (point-max))
(message-goto-body)
(prog1 (insert (org-mime-multipart body html)
(mapconcat 'identity html-images "\n"))
(delete-file temp-body-file))))