2009-12-18 40 views

回答

6

這工作得很好:

(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的工作瓦特/我的系統上的任何配置。

2

C-x m很簡單。

+0

的確如此。但我想以編程方式發送它。它看起來像撰寫郵件會帶來一個新框架來撰寫郵件。 – 2009-12-18 19:31:01

相關問題