laravel / vonage-notification-channel

Vonage Notification Channel for Laravel.
https://laravel.com/docs/notifications#sms-notifications
MIT License
744 stars 51 forks source link

STOP not working in NEXMO #82

Closed pratiweb closed 1 year ago

pratiweb commented 1 year ago

Vonage Notification Channel Version

"nexmo/laravel": "^2.4"

Laravel Version

8.1

PHP Version

8.1

Database Driver & Version

5.7

Description

One of my client using NEXMO api to send message from system. There is facility to stop message send to client phone. After reply STOP message will not be stop and system still sending message

$neximoStatus =  (new NexmoMessage)
                ->content("Hi {$notifiable->name}, In 7 days the vaccine {$this->vaccine->name} is due to be administered {$this->textOnAnimal} {$this->textForDisease}. The administration date for this is {$this->alert->vaccinationDate()}. To opt out, please text reply STOP directly to this message.")
                ->from($from)
                ->unicode();

unnamed

Steps To Reproduce

One of my client using NEXMO api to send message from system using. There is facility to stop message send to client phone. After reply STOP message will not be stop and system still sending message

$neximoStatus =  (new NexmoMessage)
                ->content("Hi {$notifiable->name}, In 7 days the vaccine {$this->vaccine->name} is due to be administered {$this->textOnAnimal} {$this->textForDisease}. The administration date for this is {$this->alert->vaccinationDate()}. To opt out, please text reply STOP directly to this message.")
                ->from($from)
                ->unicode();
driesvints commented 1 year ago

Hey there,

Unfortunately we don't support this version anymore. Please check out our support policy on which versions we are currently supporting. Can you please try to upgrade to the latest version and see if your problem persists? If so, please open up a new issue and we'll help you out.

Thanks!

pratiweb commented 1 year ago

@driesvints Are you asking to upgrade laravel of NEXMO library ?

pratiweb commented 1 year ago

@driesvints Are you supports STOP functionality ?