Skip to content

Instantly share code, notes, and snippets.

@mpcabd
Created December 8, 2013 12:06
Show Gist options
  • Save mpcabd/03ce7d302eb4e1f5bfb7 to your computer and use it in GitHub Desktop.
Save mpcabd/03ce7d302eb4e1f5bfb7 to your computer and use it in GitHub Desktop.
#!/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