You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,6 +104,20 @@ public function routeNotificationForTextlocal(): array
104
104
105
105
### Available Message methods
106
106
107
+
And if you want to have a specific sender based on Notification, e.g. like you are sending promotional notification using one and another for transaction then you can just define this method in your notification class which will return your sender id for that notification only
108
+
```
109
+
public function getSenderId()
110
+
{
111
+
return 'YOUR_SENDER_ID';
112
+
}
113
+
```
114
+
115
+
Unicode support
116
+
If you want to send the notification content to have unicode support set define this method in your notification which will return boolean based on which the sms will set the unicode mode in textlocal API
0 commit comments