return true;
}
//Edit recipient
if(args[0].equalsIgnoreCase("recipient")) {
RecipientAction action = null;
switch (args[1].toLowerCase()) {
case "add": action = RecipientAction.ADD; Email.recipient(sender, args[2], action);
case "addbcc": action = RecipientAction.ADD_BCC; Email.recipient(sender, args[2], action);
case "addcc": action = RecipientAction.ADD_CC; Email.recipient(sender, args[2], action);
case "delete": action = RecipientAction.DELETE; Email.recipient(sender, args[2], action);