org-mime.el 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. ;;; org-mime.el --- org html export for text/html MIME emails
  2. ;; Copyright (C) 2010 Eric Schulte
  3. ;; Author: Eric Schulte
  4. ;; Keywords: mime, mail, email, html
  5. ;; Homepage: http://orgmode.org/worg/org-contrib/org-mime.php
  6. ;; Version: 0.01
  7. ;;; License:
  8. ;; This program is free software; you can redistribute it and/or modify
  9. ;; it under the terms of the GNU General Public License as published by
  10. ;; the Free Software Foundation; either version 3, or (at your option)
  11. ;; any later version.
  12. ;;
  13. ;; This program is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;;
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs; see the file COPYING. If not, write to the
  20. ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  21. ;; Boston, MA 02110-1301, USA.
  22. ;;; Commentary:
  23. ;; WYSWYG, html mime composition using org-mode
  24. ;;
  25. ;; For mail composed using the orgstruct-mode minor mode, this
  26. ;; provides a function for converting all or part of your mail buffer
  27. ;; to embedded html as exported by org-mode. Call `org-mime-htmlize'
  28. ;; in a message buffer to convert either the active region or the
  29. ;; entire buffer to html.
  30. ;;
  31. ;; Similarly the `org-mime-org-buffer-htmlize' function can be called
  32. ;; from within an org-mode buffer to convert the buffer to html, and
  33. ;; package the results into an email handling with appropriate MIME
  34. ;; encoding.
  35. ;;
  36. ;; you might want to bind this to a key with something like the
  37. ;; following message-mode binding
  38. ;;
  39. ;; (add-hook 'message-mode-hook
  40. ;; (lambda ()
  41. ;; (local-set-key "\C-c\M-o" 'org-mime-htmlize)))
  42. ;;
  43. ;; and the following org-mode binding
  44. ;;
  45. ;; (add-hook 'org-mode-hook
  46. ;; (lambda ()
  47. ;; (local-set-key "\C-c\M-o" 'org-mime-org-buffer-htmlize)))
  48. ;;; Code:
  49. (defcustom org-mime-default-header
  50. "#+OPTIONS: latex:t\n"
  51. "Default header to control html export options, and ensure
  52. first line isn't assumed to be a title line."
  53. :group 'org-mime
  54. :type 'string)
  55. (defcustom org-mime-library 'mml
  56. "Library to use for marking up MIME elements."
  57. :group 'org-mime
  58. :type '(choice 'mml 'semi 'vm))
  59. (defcustom org-mime-preserve-breaks t
  60. "Used as temporary value of `org-export-preserve-breaks' during
  61. mime encoding."
  62. :group 'org-mime
  63. :type 'boolean)
  64. (defcustom org-mime-fixedwith-wrap
  65. "<pre style=\"font-family: courier, monospace;\">\n%s</pre>\n"
  66. "Format string used to wrap a fixedwidth HTML email."
  67. :group 'org-mime
  68. :type 'string)
  69. (defcustom org-mime-html-hook nil
  70. "Hook to run over the html buffer before attachment to email.
  71. This could be used for example to post-process html elements."
  72. :group 'org-mime
  73. :type 'hook)
  74. ;; example hook, for setting a dark background in <pre style="background-color: #EEE;"> elements
  75. (defun org-mime-change-element-style (element style)
  76. "Set new default htlm style for <ELEMENT> elements in exported html."
  77. (while (re-search-forward (format "<%s" element) nil t)
  78. (replace-match (format "<%s style=\"%s;\"" element style))))
  79. ;; ;; example addition to `org-mime-html-hook' adding a dark background
  80. ;; ;; color to <pre> elements
  81. ;; (add-hook 'org-mime-html-hook
  82. ;; (lambda ()
  83. ;; (org-mime-change-element-style
  84. ;; "pre" (format "color: %s; background-color: %s"
  85. ;; "#E6E1DC" "#232323"))))
  86. (defun org-mime-file (ext path id)
  87. "Markup a file for attachment."
  88. (case org-mime-library
  89. ('mml (format
  90. "<#part type=\"%s\" filename=\"%s\" id=\"<%s>\">\n<#/part>\n"
  91. ext path id))
  92. ('semi (format
  93. "--[[application/octet-stream; type=%s\nContent-ID: %s; filename=\"%s\"][base64]]"
  94. ext id path))
  95. ('vm "?")))
  96. (defun org-mime-multipart (plain html)
  97. "Markup a multipart/alternative with text/plain and text/html
  98. alternatives."
  99. (case org-mime-library
  100. ('mml (format (concat "<#multipart type=alternative><#part type=text/plain>"
  101. "%s<#part type=text/html>%s<#/multipart>\n")
  102. plain html))
  103. ('semi (format (concat "--<<alternative>>-{\n--[[text/plain;%s\n--]]\n"
  104. "--[[text/html;%s\n--]]\n--}-<<alternative>>\n")
  105. plain html))
  106. ('vm "?")))
  107. (defun org-mime-replace-images (str current-file)
  108. "Replace images in html files with cid links."
  109. (let (html-images)
  110. (cons
  111. (replace-regexp-in-string ;; replace images in html
  112. "src=\"\\([^\"]+\\)\""
  113. (lambda (text)
  114. (format
  115. "src=\"cid:%s\""
  116. (let* ((url (and (string-match "src=\"\\([^\"]+\\)\"" text)
  117. (match-string 1 text)))
  118. (path (expand-file-name
  119. url (file-name-directory current-file)))
  120. (ext (file-name-extension path))
  121. (id (replace-regexp-in-string "[\/\\\\]" "_" path)))
  122. (add-to-list 'html-images
  123. (org-mime-file (concat "image/" ext) path id))
  124. id)))
  125. str)
  126. html-images)))
  127. (defun org-mime-htmlize (arg)
  128. "Export a portion of an email body composed using `mml-mode' to
  129. html using `org-mode'. If called with an active region only
  130. export that region, otherwise export the entire body."
  131. (interactive "P")
  132. (let* ((region-p (org-region-active-p))
  133. (html-start (or (and region-p (region-beginning))
  134. (save-excursion
  135. (goto-char (point-min))
  136. (search-forward mail-header-separator)
  137. (+ (point) 1))))
  138. (html-end (or (and region-p (region-end))
  139. ;; TODO: should catch signature...
  140. (point-max)))
  141. (raw-body (buffer-substring html-start html-end))
  142. (tmp-file (make-temp-name (expand-file-name "mail" "/tmp/")))
  143. (body (org-mime-org-export "org" raw-body tmp-file))
  144. ;; because we probably don't want to skip part of our mail
  145. (org-export-skip-text-before-1st-heading nil)
  146. ;; because we probably don't want to export a huge style file
  147. (org-export-htmlize-output-type 'inline-css)
  148. ;; makes the replies with ">"s look nicer
  149. (org-export-preserve-breaks org-mime-preserve-breaks)
  150. ;; to hold attachments for inline html images
  151. (html-and-images
  152. (org-mime-replace-images
  153. (org-mime-org-export "html" raw-body tmp-file)
  154. tmp-file))
  155. (html-images (unless arg (cdr html-and-images)))
  156. (html (org-mime-apply-html-hook
  157. (if arg
  158. (format org-mime-fixedwith-wrap body)
  159. (car html-and-images)))))
  160. (delete-region html-start html-end)
  161. (save-excursion
  162. (goto-char html-start)
  163. (insert (org-mime-multipart body html)
  164. (mapconcat 'identity html-images "\n")))))
  165. (defun org-mime-org-export (fmt body tmp-file)
  166. "Org-Export BODY to format FMT with the file name set to
  167. TMP-FILE during export."
  168. (save-excursion
  169. (with-temp-buffer
  170. (insert org-mime-default-header)
  171. (insert body)
  172. (write-file tmp-file)
  173. (org-load-modules-maybe)
  174. (unless org-local-vars
  175. (setq org-local-vars (org-get-local-variables)))
  176. (substring
  177. (eval ;; convert to fmt -- mimicing `org-run-like-in-org-mode'
  178. (list 'let org-local-vars
  179. (list (intern (concat "org-export-as-" fmt))
  180. nil nil nil ''string t)))
  181. (if (string= fmt "org") (length org-mime-default-header) 0)))))
  182. (defun org-mime-apply-html-hook (html)
  183. (when org-mime-html-hook
  184. (with-temp-buffer
  185. (insert html)
  186. (goto-char (point-min))
  187. (run-hooks 'org-mime-html-hook)
  188. (buffer-string))))
  189. (defun org-mime-org-buffer-htmlize ()
  190. "Export the current org-mode buffer to HTML using
  191. `org-export-as-html' and package the results into an email
  192. handling with appropriate MIME encoding."
  193. (interactive)
  194. (require 'reporter)
  195. (let* ((region-p (org-region-active-p))
  196. (current-file (buffer-file-name (current-buffer)))
  197. (html-start (or (and region-p (region-beginning))
  198. (save-excursion
  199. (goto-char (point-min)))))
  200. (html-end (or (and region-p (region-end))
  201. (point-max)))
  202. (body (org-export-as-org nil nil nil 'string t))
  203. (org-link-file-path-type 'absolute)
  204. ;; because we probably don't want to export a huge style file
  205. (org-export-htmlize-output-type 'inline-css)
  206. ;; to hold attachments for inline html images
  207. (html-and-images (org-mime-replace-images
  208. (org-export-as-html nil nil nil 'string t)
  209. current-file))
  210. (html-images (cdr html-and-images))
  211. (html (org-mime-apply-html-hook (car html-and-images))))
  212. ;; dump the exported html into a fresh message buffer
  213. (reporter-compose-outgoing)
  214. (goto-char (point-max))
  215. (insert (org-mime-multipart body html)
  216. (mapconcat 'identity html-images "\n"))))
  217. (provide 'org-mime)