Emoji in Whatsapp Message

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],
“!”,
" :wrench: Serviço”,
[ID_Agendamento].[Servico].[Descricao_Servico],
" :date: Agendamento: ",
" :dollar_banknote: Valor a Receber: R$ “,
" :one_o_clock: Próximos Atendimentos: “,
“\n”,
“\n”,
“\n”,
" :cross_mark: Atendimentos Cancelados”,
“\n”,
“\n”,
" :white_check_mark: Atendimentos Realizados”,
“\n”,
),
“\n”,
"
"
)
)
)

1 Like