modified: public/.well-known/assetlinks.json modified: src/lib/code-otp-sender.ts ### No issue
31 lines
717 B
TypeScript
31 lines
717 B
TypeScript
const sendCodeOtp = async ({
|
|
nomor,
|
|
codeOtp,
|
|
newMessage,
|
|
}: {
|
|
nomor: string;
|
|
codeOtp?: string;
|
|
newMessage?: string;
|
|
}) => {
|
|
const msg =
|
|
newMessage ||
|
|
`HIPMI - Kode ini bersifat RAHASIA dan JANGAN DI BAGIKAN KEPADA SIAPAPUN, termasuk anggota ataupun pengurus HIPMI lainnya.\n\n>> Kode OTP anda: ${codeOtp}.`;
|
|
const enCode = msg;
|
|
|
|
const res = await fetch(`https://otp.wibudev.com/api/wa/send-text`, {
|
|
method: "POST",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
Authorization: `Bearer ${process.env.WA_SERVER_TOKEN}`,
|
|
},
|
|
body: JSON.stringify({
|
|
number: nomor,
|
|
text: enCode,
|
|
}),
|
|
});
|
|
|
|
return res;
|
|
};
|
|
|
|
export { sendCodeOtp as funSendToWhatsApp };
|