i am using indiasms's api with curl to send sms but after sending sms some contacts get sms content trimmed but some them get proper content i am using indiasms's api with curl to send sms but after sending sms some contacts get sms content trimmed but some them get proper content curl curl

i am using indiasms's api with curl to send sms but after sending sms some contacts get sms content trimmed but some them get proper content


I advise you not to use CURL when programming in Laravel. Use Http facade instead:

$Response = \Http::get('https://app.indiasms.com/sendsms/bulksms.php?username=dummy&password=dummy&type=UNICODE&sender=ALERTS&mobile=$customerNumber&message=$replacesMessage');dd($Response->body());

For comprehensive reference, do check the documentation.