From 7258d41c02cbc106add21f56b348966708820a36 Mon Sep 17 00:00:00 2001 From: Dan White Date: Thu, 25 Oct 2012 12:57:25 -0500 Subject: [PATCH] email is no longer available --- sms | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/sms b/sms index 58507b4..2e8a128 100755 --- a/sms +++ b/sms @@ -2,7 +2,7 @@ # Dan White -SMSTO=${SMSTO:-"dansms"} +SMSTO=${SMSTO:-"4028904049@messaging.sprintpcs.com"} function usage { cat << EOF @@ -20,7 +20,9 @@ fi SUBJECT=$1 if [ -r "$2" ]; then - cat "$2" | email -s "$SUBJECT" $SMSTO + #cat "$2" | email -s "$SUBJECT" $SMSTO + cat "$2" | mail -s "$SUBJECT" $SMSTO else - email -b -s "$SUBJECT" $SMSTO + #email -b -s "$SUBJECT" $SMSTO + echo "$SUBJECT" | mail $SMSTO fi -- 2.25.1