Skip to content

Instantly share code, notes, and snippets.

@kosh04
Last active August 29, 2015 14:10
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 kosh04/a1b6b35e54a039b4155f to your computer and use it in GitHub Desktop.
Save kosh04/a1b6b35e54a039b4155f to your computer and use it in GitHub Desktop.
htmlメールを送る
#/bin/sh
MAILTO=xxx@gexmple.com
MAILFROM=yyy@example.com
SUBJECT=Hello
HTML=$(curl -s http://leemunroe.github.io/html-email-template/email.html)
sendmail -i $MAILTO <<EOF
From: $MAILFROM
To: $MAILTO
Subject: $SUBJECT
Content-Type: text/html; charset="utf-8"
MIME-Version: 1.0
$HTML
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment