You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using a validated number as originator the send_sms implementation will fail. This is because the originator gets reduced to the first 11 characters.
When using a validated number as originator the send_sms implementation will fail. This is because the originator gets reduced to the first 11 characters.
Removing the line
originator = originator[0, 11]
from sms_service.rb fixes this issue.