#!/bin/bash | |
text="To: $2"$'\n'"From: server@example.com"$'\n'"Subject: $1"$'\n\n'; | |
while read x; do | |
text="$text"$'\n'"$x"; | |
done | |
echo "$text" | ssmtp $2; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment