#!/bin/sh [ $# = 2 ] || exit 1 to="$2" bcc='treasurer@mageia.org' from='Mageia Treasurer ' subject='Thanks for your donation to the Mageia project' case "$1" in paypal) echo "Press enter to send thanks to $to ($1)" read z mailx -b "$bcc" -r "$from" -s "$subject" "$to" <