3 final class PhabricatorMailSMSMessage
4 extends PhabricatorMailExternalMessage
{
6 const MESSAGETYPE
= 'sms';
11 public function newMailMessageEngine() {
12 return new PhabricatorMailSMSEngine();
15 public function setToNumber(PhabricatorPhoneNumber
$to_number) {
16 $this->toNumber
= $to_number;
20 public function getToNumber() {
21 return $this->toNumber
;
24 public function setTextBody($text_body) {
25 $this->textBody
= $text_body;
29 public function getTextBody() {
30 return $this->textBody
;