diff options
Diffstat (limited to 'gui')
-rw-r--r-- | gui/conf/email.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gui/conf/email.el b/gui/conf/email.el index 51adc95..4236bff 100644 --- a/gui/conf/email.el +++ b/gui/conf/email.el @@ -81,5 +81,10 @@ (add-to-list 'org-capture-templates '("m" "eMail note" entry (file org-default-notes-file) - "* TODO /%:subject/\n See %a\n\n%?" + "* TODO /%:subject/\n See %a\n%?" :prepend t)) +(add-to-list 'org-capture-templates + '("r" "Respond to eMail" entry (file org-default-notes-file) + "* TODO Respond to /%:subject/\n See %a\n%?" + :prepend t + :immediate-finish t)) |