Closed github-actions[bot] closed 1 year ago
console.log("mail sent success");
https://github.com/Kanaries/Rath/blob/fe41774375c795ea0335014cc8577d8e5c372691/packages/rath-client/src/hooks/index.ts#L60
async function sendCertMail(email: string) { const url = getServerUrl('/api/sendMailCert'); // TODO: [feat] email format check const res = await request.post<{ email: string }, string>(url, { email }); if (res) { // console.log("mail sent success"); } return res; } async function sendCertPhone(phone: string) { const url = getServerUrl('/api/sendPhoneCert'); const res = await request.post<{ phone: string }, string>(url, { phone }); if (res) { // console.log("message sent success"); } return res; }
Closed in 7b8d7512026da6dba3f25a728835723a84a38e25
console.log("mail sent success");
https://github.com/Kanaries/Rath/blob/fe41774375c795ea0335014cc8577d8e5c372691/packages/rath-client/src/hooks/index.ts#L60