#!/usr/bin/sh

# Quick Mail
# V0.0.1
# Coded by: M. Carter Brown
# To run: ./qm.sh or "sh qm.sh"
#
# Description: Uses the Mail function to send a quick message to someone

echo -e STARTING QUICK MAIL......
echo -e MAIL TO:

read to

echo -e SUBJECT:

read subject

echo -e MESSAGE: USE CTRL +D TO SEND MESSAGE

mail -s "$subject" $to