Laravel 8 格式化短信通知
如果通知支持以短信方式发送,那么你需要在通知类上定义一个 toNexmo
方法,该方法接收一个 $notifiable
实体并返回 Illuminate\Notifications\Messages\NexmoMessage
实例:
/**
* 获取通知的 Nexmo / SMS 表示形式。
*
* @param mixed $notifiable
* @return NexmoMessage
*/
public function toNexmo($notifiable)
{
return (new NexmoMessage)
->content('Your SMS message content');
}