Skip to content

Instantly share code, notes, and snippets.

@kopiro
Created June 9, 2011 12:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kopiro/1016640 to your computer and use it in GitHub Desktop.
Save kopiro/1016640 to your computer and use it in GitHub Desktop.
Send mail from File (Unix Terminal)
for i in $(cat FILE);
do echo "BODY" | mail -s "SUBJECT" $i;
printf "Sent to $i\n";
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment