16 lines
365 B
JavaScript
16 lines
365 B
JavaScript
const whatsappService = require('./backend/whatsappService');
|
|
|
|
async function test() {
|
|
console.log('Sending test token message...');
|
|
const result = await whatsappService.sendTokenConfirmation(
|
|
'+918500176938',
|
|
'ON-777',
|
|
'CuraFlow Testing Clinic',
|
|
'04:30 PM',
|
|
500
|
|
);
|
|
console.log('Result:', result);
|
|
}
|
|
|
|
test();
|