~custom declaration in smtpmail

This commit is contained in:
2020-09-01 23:28:10 +01:00
parent ce90a7c2cf
commit 9af6a91e78

View File

@@ -1007,13 +1007,13 @@ integrate it into my workflow just a bit better.
*** Smtpmail *** Smtpmail
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package smtpmail (use-package smtpmail
:commands mail-send
:after notmuch :after notmuch
:commands mail-send
:custom :custom
((smtpmail-smtp-server "mail.aryadevchavali.com") (smtpmail-smtp-server "mail.aryadevchavali.com")
(smtpmail-smtp-user "aryadev") (smtpmail-smtp-user "aryadev")
(smtpmail-smtp-service 587) (smtpmail-smtp-service 587)
(smtpmail-stream-type 'starttls)) (smtpmail-stream-type 'starttls)
:init :init
(setq send-mail-function #'smtpmail-send-it (setq send-mail-function #'smtpmail-send-it
message-send-mail-function #'smtpmail-send-it)) message-send-mail-function #'smtpmail-send-it))