#!/bin/bash
# Create new email account
#
# Arguments:
ACCOUNT=$1
EMAIL_ADDRESS=$2
EMAIL_PASSWORD=$3
QUOTA=$4
SEND_LIMIT=$5

# On success no output should be passed.
# exit with code 0
#
# On error write your error to stderr.
# exit with code 1
# e.g. >&2 echo "Failed creating email account" && exit 1

exit 0