You are on page 1of 1

class Phone {

public boolean sendSMS (String phnum, String msg){


boolean msgSentStatus = false;
if (send(phNum,msg)){
msgSentStatus=true;
}
return msgSentStatus;
}
}

You might also like