esmtpmail

Homepage: http://www.robf.de/Hacking/elisp

Author: Tomoji Kagatani

Updated:

Summary

Simple SMTP protocol (RFC 821) for sending mail

Commentary

Send Mail to smtp host from esmtpmail temp buffer.

Please add these lines in your .emacs(_emacs) or use customize.

(setq send-mail-function 'esmtpmail-send-it) ; if you use `mail'
(setq message-send-mail-function 'esmtpmail-send-it) ; if you use `message'
(setq esmtpmail-default-smtp-server "YOUR SMTP HOST")
(setq esmtpmail-local-domain "YOUR DOMAIN NAME")
(setq esmtpmail-debug-info t) ; only to debug problems
(load-library "esmtpmail")
(setq esmtpmail-code-conv-from nil)
(setq user-full-name "YOUR NAME HERE")

To queue mail, set esmtpmail-queue-mail to t and use 
esmtpmail-send-queued-mail to send.

Dependencies