send text message
💬 Send the text message to the customer.
to- the phone number with the country code, but without the plus sign (+).
message- the message to be sent.
previewUrl- is used to preview the URL in the chat window.
whatsapp.messagesTemplate(
to: 910000000000,
message: "Hey Flutter, follow me on https://example.com",
previewUrl: true
);
The message does not send.
Actually, it's correct to use:
whatsapp.messagesText(
to: 910000000000,
message: "Hey Flutter, follow me on https://example.com",
previewUrl: true
);
But I still can't send it!
My friends could help me please, thanks in advance!
send text message 💬 Send the text message to the customer.
to- the phone number with the country code, but without the plus sign (+). message- the message to be sent. previewUrl- is used to preview the URL in the chat window.
The message does not send.
Actually, it's correct to use:
But I still can't send it!
My friends could help me please, thanks in advance!