49 lines
727 B
Plaintext
49 lines
727 B
Plaintext
# ---------------------------------------
|
|
# - Settings for script reminder_email.sh
|
|
# ---------------------------------------
|
|
|
|
|
|
# MESSAGE
|
|
#
|
|
# The mail body of the reminder E-Mail
|
|
#
|
|
MESSAGE="
|
|
|
|
** ------------------------------- **
|
|
|
|
This is an outogenerated E-Mail
|
|
|
|
Don't respond
|
|
|
|
** ------------------------------- **
|
|
|
|
|
|
"
|
|
|
|
|
|
# SUBJECT
|
|
#
|
|
SUBJECT="[Erinnerung] ..."
|
|
|
|
|
|
# DAY
|
|
#
|
|
# The weekday, the message should be sended
|
|
#
|
|
# Note: remember the locale settings on the machine
|
|
#
|
|
DAY="Donnerstag"
|
|
|
|
|
|
# EMAIL_ADDRESSES
|
|
#
|
|
EMAIL_ADDRESSES="
|
|
"
|
|
|
|
# EMAIL_FROM
|
|
#
|
|
# Its recommend, to use an existing e-mail adress or at least
|
|
# an existing e-mail domain here. Otherwise
|
|
#
|
|
EMAIL_FROM="reminder@oopen.de"
|