Difference between revisions of "Email using bash"

From UVOO Tech Wiki
Jump to navigation Jump to search
(Created page with "https://unix.stackexchange.com/questions/525235/install-ssmtp-in-debian-buster ``` 9 ssmtp is currently unmaintained, but you can install and configure msmtp as well: For...")
 
(No difference)

Latest revision as of 15:34, 5 October 2022

https://unix.stackexchange.com/questions/525235/install-ssmtp-in-debian-buster

9

ssmtp is currently unmaintained, but you can install and configure msmtp as well:

For gmail (with deactivated 2-factor login) use this configuration in /etc/msmtprc:

# Set default values for all following accounts.
defaults
port 587
tls on
tls_trust_file /etc/ssl/certs/ca-certificates.crt

account gmail
host smtp.gmail.com
from <user>@gmail.com
auth on
user <user>
password <your password>

# Set a default account
account default : gmail
To test it run

echo -e "Subject: msmtp test\nhello test." | msmtp _recipient_address_
You should find your sent e-mail in the recipient's inbox shortly afterwards.