emacs.d

My Emacs configuration files.
git clone git://soucy.cc/emacs.d.git
Log | Files | Refs | README

email.el (239B)


      1 ;;; Email setup
      2 
      3 ;;; Code
      4 (setq send-mail-function 'sendmail-send-it
      5   sendmail-program "/usr/local/bin/msmtp"
      6   mail-specify-envelope-from t
      7   message-sendmail-envelope-from 'header
      8   mail-envelope-from 'header
      9   )
     10 ;;; email.el ends here