阅读(2039) (0)

Laravel 8 格式化短信通知

2021-07-06 09:24:47 更新

如果通知支持以短信方式发送,那么你需要在通知类上定义一个 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');
}