#!/bin/bash

if [ $# -ne 2 ]
then
	echo "Invalid parameters."
	exit 0
fi

echo $2 | mail -s "SMS from $1" alguien@dominio.com


