SMS TWILIO

SMS TWILIO

Hi, I am trying to send an SMS to patients to tell them when their medications will be delivered. I want the message to read:
"Your medication is scheduled for delivery on input.Date_For_Scheduled_Delivery. 

Then I want the message to read as follows. To cancel or reschedule text back.

1= CANCEL
2 = RESCHEDULE TO NEXT DAY AFTER SCHEDULED DELIVERY
3 = RESCHEDULE TO TWO DAYS AFTER SCHEDULED DELIVERY

I want all these 3 options to be on different lines.
Here is my code below. I don't know what I am doing wrong. I used the call function.




if(Patient_D.How_does_the_patient_want_to_be_kept_up_to_date.contains("SMS"))
{
Response_To_SMS = twilio.sms.send("Twilio",Patient_D.Mobile_number.replaceFirst("0",("+44")),"Your medication is scheduled for delivery on” + “ “ + “ “ + input.Date_For_Scheduled_Delivery + “.” + “  “ + “To cancel/reschedule, text back.” + "<br> 1=CANCEL” +  "<br> 2=" + input.Date_For_Scheduled_Delivery.getDay().addDay(1) + "<br> 3=" +  input.Date_For_Scheduled_Delivery.getDay().addDay(2));
}