我想写一些emacs命令来发送电子邮件.最简单的方法是什么?我知道emacs有很多邮件发送插件,但我真的只需要发送一个简单的小电子邮件.
这很好用:
(defun try-send-email (to subject body) "simple wrapper around message to send an email" (message-mail to subject) (message-goto-body) (insert body) (message-send-and-exit))
它确实使用Gnus的消息系统(而不是稍微简单的邮件),但它确实可以在Emacs中使用我的系统上的任何配置.