Skip to content

Instantly share code, notes, and snippets.

@gomin1d
Created February 21, 2024 02:41
Show Gist options
  • Save gomin1d/33ad268435b6b28bd98aa36baf18ccf4 to your computer and use it in GitHub Desktop.
Save gomin1d/33ad268435b6b28bd98aa36baf18ccf4 to your computer and use it in GitHub Desktop.
Приклад відправки листа через ssmtp
# Заповнюємо змінні
export FROM=mailadmin@mail.gomin1d.top
export TO=zzzzzzjon1@gmail.com
export SMTP=localhost:25

# Виконуємо команди відправки листа
cat > /etc/ssmtp/ssmtp.conf <<EOF
root=$FROM
mailhub=$SMTP
FromLineOverride=YES
UseTLS=NO
EOF

cat > test-mail.txt <<EOF
From:$FROM
Subject: Test

This is a test mail.
EOF

apt-get install -y ssmtp
ssmtp $TO < test-mail.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment