2017-06-08 11:47:56 +02:00
|
|
|
;;; app/email/autoload/email.el -*- lexical-binding: t; -*-
|
2017-04-19 13:18:03 -04:00
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun =email ()
|
|
|
|
"Start email client."
|
|
|
|
(interactive)
|
2017-06-08 11:47:56 +02:00
|
|
|
(call-interactively #'mu4e))
|
2017-04-19 13:18:03 -04:00
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun +email/compose ()
|
|
|
|
"Compose a new email."
|
|
|
|
(interactive)
|
|
|
|
;; TODO Interactively select email account
|
2017-06-08 11:47:56 +02:00
|
|
|
(call-interactively #'mu4e-compose-new))
|
2017-04-19 13:18:03 -04:00
|
|
|
|