Last active
August 29, 2015 14:10
-
-
Save kosh04/a1b6b35e54a039b4155f to your computer and use it in GitHub Desktop.
htmlメールを送る
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/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