From 792fd375db0281ef388914709f68cfc2a2743610 Mon Sep 17 00:00:00 2001 From: Tomi Ollila Date: Mon, 2 Nov 2015 17:13:10 +0200 Subject: [PATCH] Add smtpmail --- emacstips.mdwn | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/emacstips.mdwn b/emacstips.mdwn index 91c1cb0..84d6161 100644 --- a/emacstips.mdwn +++ b/emacstips.mdwn @@ -274,6 +274,41 @@ With that in place, you need a `.msmtprc` with the accounts configured for the domains you want to send out using specific SMTP servers and the rest will go to the default account. +## sending mail using smtpmail + +another option is to use remov + + + +If setting up local `sendmail` or `msmtp` is not feasible or desirable, +the Emacs `smtpmail` package can be used to send email by talking to remote +SMTP server via TCP connection. It is pretty easy to configure: + +1. `M-x customize-group smtpmail` + + as as minimum, 'Smtpmail Smtp Server' needs to be set. + + - then continue with `M-x load-library message` and + `M-x customize-variable message-send-mail-function` + -- choose `message-smtpmail-send-it` for that. + +1. Set some variables in .emacs or in [notmuch init file](/notmuch-emacs#notmuch_init_file) + + (setq smtpmail-smtp-server "smtp.server.tld" ;; <-- edit this !!! + ;; smtpmail-smtp-service 25 ;; 25 is default -- uncomment and edit if needed + ;; smtpmail-stream-type 'starttls + ;; smtpmail-debug-info t + ;; smtpmail-debug-verb t + message-send-mail-function 'message-smtpmail-send-it) + +More information for smtpmail is available: + +* In Emacs: `M-x info-display-manual smtpmail` +* At http://www.emacswiki.org/emacs/SendingMail + + ## Address completion when composing There are currently three solutions to this: -- 2.43.0