浏览代码

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.
Eric Schulte 14 年之前
父节点
当前提交
943b6701c4
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      contrib/lisp/org-mime.el

+ 1 - 1
contrib/lisp/org-mime.el

@@ -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))))