Skip to content

Instantly share code, notes, and snippets.

@mega-arbuz
Last active January 25, 2019 00:55
Show Gist options
  • Save mega-arbuz/9ebc642a771635460736cfc5b7fa0683 to your computer and use it in GitHub Desktop.
Save mega-arbuz/9ebc642a771635460736cfc5b7fa0683 to your computer and use it in GitHub Desktop.
Sends email with Zapier hook
#!/bin/bash
if [ $# -lt 4 ]; then echo "Missing parameters"; exit 1; fi
content=$(awk '{printf "%s\\n", $0}' $3)
curl --request POST \
--url $4 \
--header 'content-type: application/json' \
--data "{
\"to\": \"$1\",
\"subject\": \"$2\",
\"body\": \"$content\"
}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment