Skip to content

Instantly share code, notes, and snippets.

@sochotnicky
Created November 29, 2017 14:17
Show Gist options
  • Save sochotnicky/a39252a594d80f7b69452ac0e717c5b1 to your computer and use it in GitHub Desktop.
Save sochotnicky/a39252a594d80f7b69452ac0e717c5b1 to your computer and use it in GitHub Desktop.
/home/w0rm/bin/pto
#!/bin/bash
if [ $# -ne 2 ];then
echo "Two arguments expected (subject, body)"
exit 1
fi
msmtp --from="Stanislav Ochotnicky <[email protected]>" \
-t << EOF
From: Stanislav Ochotnicky <[email protected]>
To: [email protected], [email protected]
Subject: $1
$2
--
Stanislav Ochotnicky <[email protected]>
Business System Analyst, Hosted and Shared Services
PGP: 7B087241
Red Hat Inc. http://cz.redhat.com
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment