8 lines
242 B
Bash
Executable File
8 lines
242 B
Bash
Executable File
#!/bin/bash
|
|
|
|
TO="jakesclarion02alerts@gmail.com,m24b@fsu.edu, mwheeler4@fsu.edu, vtripath@fsu.edu"
|
|
SUBJECT="Clarion in alert WEBPAGE NOT UPDATED!!"
|
|
BODY="The webpage time has not updated in 15 minutes!"
|
|
|
|
echo "$BODY" | mail -s "$SUBJECT" $TO
|