branch: elpa/org-mime
commit e3329c7c4df120b08b7cbdc6925a67c84b510e74
Author: Chen Bin <[email protected]>
Commit: Chen Bin <[email protected]>
README
---
README.org | 4 +++-
org-mime.el | 9 +++++----
2 files changed, 8 insertions(+), 5 deletions(-)
diff --git a/README.org b/README.org
index 86452548d0..b5660ea486 100644
--- a/README.org
+++ b/README.org
@@ -51,7 +51,7 @@ MAIL_TO, MAIL_CC, and MAIL_BCC. Here is the sample of subtree:
:END:
content ...
#+end_example
-** embed image into mail body
+** Embed image into mail body
Use below syntax,
#+begin_example
[[/full/path/to/your.jpg]]
@@ -85,6 +85,8 @@ Render text between "@" in red color, you can use
`org-mime-html-hook',
(replace-match "<span style=\"color:red\">\\1</span>"))))
#+end_src
For other customization options see the org-mime customization group.
+** Beautify quoted mail when replying
+It already works out of box. Currently it emulate Gmail's style. You can go
back the old Gnus style by =(setq org-mime-beautify-quoted-mail nil)=.
** Export options
To avoid exporting TOC, you can setup `org-mime-export-options',
#+begin_src elisp
diff --git a/org-mime.el b/org-mime.el
index 9c42802db1..a7c03b7426 100644
--- a/org-mime.el
+++ b/org-mime.el
@@ -82,8 +82,8 @@
;; (local-set-key (kbd "C-c M-o") 'org-mime-org-buffer-htmlize)))
;;
;; Extra Tips:
-;; 1. In order to embed image into your mail, use below org syntax,
-;; [[/full/path/to/your.jpg]]
+;; 1. In order to embed image into your mail, use below syntax,
+;; [[/full/path/to/your.jpg]]
;;
;; 2. It's easy to add your own emphasis symbol. For example, in order to
render
;; text between "@" in red color, you can use `org-mime-html-hook':
@@ -92,8 +92,9 @@
;; (while (re-search-forward "@\\([^@]*\\)@" nil t)
;; (replace-match "<span style=\"color:red\">\\1</span>"))))
;;
-;; 3. Since v0.0.8, the quoted mail use modern style (like Gmail). If you
prefer
-;; the original style, please set `org-mime-beautify-quoted-mail' to nil.
+;; 3. Since v0.0.8, the quoted mail uses modern style (like Gmail).
+;; So replyed mail looks clean and modern. If you prefer old style, please set
+;; `org-mime-beautify-quoted-mail' to nil.
;;; Code:
(require 'cl-lib)