function sendOrderToPizzeria(order) {
var chat_id = $jsapi.context().session.PizzaChatId;
var token = $jsapi.context().injector.bot_token;
var url = "https://api.telegram.org/bot"+token+"/sendMessage";
var options = {
body: {
"chat_id": chat_id,
"text": order
}
};
var response = $http.post(url, options);
return response.isOk ? response.data : false;
}