Skip to content

Commit

Permalink
added support + for malaysia mode
Browse files Browse the repository at this point in the history
  • Loading branch information
shiroamada committed Jul 7, 2023
1 parent bc4f0e8 commit 90f8d8b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/UltraSmsChannel.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ protected function sendMessage($recipient, UltraSmsMessage $message)
{
$valid_mobile = '+6' . $recipient;
}

if ($recipient[0] == '+')
{
$valid_mobile = $recipient;
}
}
else
{
Expand Down

0 comments on commit 90f8d8b

Please sign in to comment.