I am using this code for testing to send SMS everything work but i want to know if i have to buy a twilio phone to put it inside from: "" Because I want to send real SMS to my client
export const sendReservationConfirmationSMSTwilio = async ({
firstName,
reservationId,
phone,
date,
hour,
totalPersons,
}) => {
client.messages.create({
body: `Bonjour, nouvelle réservation ${reservationId}! ${firstName} est joignable au ${phone}. Date: ${date} à ${hour}. Couverts: ${totalPersons} Commande: voir tableau de réservation`,
from: '+15005550006',
to: `+33${phone.slice(1)}`,
}).then((res) => console.log(res)
};
Thanks !