Skip to content

Instantly share code, notes, and snippets.

@chimerast
Created March 23, 2012 03:36
Show Gist options
  • Save chimerast/2166514 to your computer and use it in GitHub Desktop.
Save chimerast/2166514 to your computer and use it in GitHub Desktop.
/usr/sbin/sendmailをつかってシェルスクリプトからメールを簡単に送る
#!/bin/bash
PROGRAM=`basename $0`
MAILTO="test@example.com"
MAILFROM=$USER@$HOSTNAME
function sendmail {
read -rd '' BODY
/usr/sbin/sendmail -t << EOF
To: $MAILTO
From: $PROGRAM at $HOSTNAME <$MAILFROM>
Subject: $1
$BODY
EOF
}
sendmail "メールのタイトル" << EOF
メール本文
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment