我正在通过Nexmo使用Laravel Notification发送短信。按照文档,我可以撰写我的消息内容,如:
/**
* Get the Nexmo / SMS representation of the notification.
*
* @param mixed $notifiable
* @return NexmoMessage
*/
public function toNexmo($notifiable)
{
return (new NexmoMessage)
->content('Your SMS message content');
}
但是,我需要在短信内容中发送一个链接。
我该如何做到这一点?