#!/bin/sh # # (C) 2014-2021 by Christian Hesse # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. while getopts "i:p:m:" opt; do case ${opt} in i) IDENTIFIER="${OPTARG}" ;; p) PRIORITY="${OPTARG}" ;; m) MESSAGE="${OPTARG}" ;; esac done # WARNING: Do NOT use this unmodified! # Please replace mail address with your own. mail -s "[${PRIORITY}] ${IDENTIFIER}" mail@example.com <<< "${MESSAGE}" exit 0 # vim: set syntax=sh: