Hello everyone,
I'm building an app and one of its functions is to send messages on WhatsApp.
I have to send them with some emojis, because it makes things simpler and more fun.
I'm using a code that was working, and then it just stopped working.
If anyone can help, I'd really appreciate it...
Incomplete Code
CONCATENATE(
“URL Removed by Staff”,
“+55”,
[Cliente].[Telefone_Cliente],
“?text=”,
ENCODEURL(
SUBSTITUTE(
CONCATENATE(
"Olá, ",
[Cliente].[Nome_Cliente],
" “,
[Cliente].[Sobrenome_Cliente],
“!”,
"
Serviço”,
[ID_Agendamento].[Servico].[Descricao_Servico],
"
Agendamento: ",
"
Valor a Receber: R$ “,
"
Próximos Atendimentos: “,
“\n”,
“\n”,
“\n”,
"
Atendimentos Cancelados”,
“\n”,
“\n”,
"
Atendimentos Realizados”,
“\n”,
),
“\n”,
"
"
)
)
)