Mutt (Linux): Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(→Senden) |
|||
Zeile 22: | Zeile 22: | ||
<pre> | <pre> | ||
echo "This is the text of the mail body..." | mutt -a <attachment path> -s "This is the text of the subject" -- <user>@<domain> 2>&1 | |||
</pre> | </pre> | ||
Version vom 1. Januar 2018, 18:08 Uhr
Installation
sudo apt-get install mutt
Konfiguration
Die Konfigurationsparameter können in folgender Datei bearbeitet werden:
nano ~/.muttrc
Die Absenderadresse stellt man folgendermaßen ein:
set realname="Max Mustermann" set from="max.mustermann@gmx.de" set use_envelope_from=yes
Senden
echo "This is the text of the mail body..." | mutt -a <attachment path> -s "This is the text of the subject" -- <user>@<domain> 2>&1
Links
https://wiki.ubuntuusers.de/Mutt/
http://www.selflinux.org/selflinux/html/mutt02.html
https://dev.mutt.org/trac/wiki/MuttGuide/UseGPG
Zurück zu Ubuntu