我可以使用laravel和nexmo在我的数据库上向用户发送短信

如果可以使用laravel和Nexmo在我的数据库上向用户发送短信,我想确保在Nexmo上付款。 因为我尝试这样做,我得到的是一个Non White-listed Destination - rejected错误。 或者我必须将所有电话号码添加到nexmo数据库才能使用它们,或者是因为我正在使用试用版。 用于发送消息的代码,该消息给出了Non white-listed Error

$nexmo = app('NexmoClient');
        $nexmo->message()->send([
        'to' => Auth::user()->phone,
        'from' => config('app.name', 'Laravel'),
        'text' => 'Text message Sent From '.config('app.name', 'Laravel').' To confrim that this is your Phone Number.'
        ]);

最初订购Nexmo时,您可以在演示模式下使用多达10个目的地号码,直到您充值完成为止。 要将消息发送到这些电话号码,您需要在https://dashboard.nexmo.com/中添加它们。

链接地址: http://www.djcxy.com/p/33135.html

上一篇: can i send sms to the user on my database using laravel and nexmo

下一篇: How to send confirmation code via SMS using nexmo api