#!/bin/bash
OPERATORS=$(cat /var/cache/landscapeManagersMailingList)
logger -t sailing "Sending notification e-mail with subject $1 to ${OPERATORS}"
mail -s "$1" ${OPERATORS} # This doesn't include the body, so if using programatically, pipe a body into this script.
