completed user admin page
This commit is contained in:
40
apps/hub/helper/mail.ts
Normal file
40
apps/hub/helper/mail.ts
Normal file
@@ -0,0 +1,40 @@
|
||||
export const sendMail = async (
|
||||
email: string,
|
||||
subject: string,
|
||||
html: string,
|
||||
) => {
|
||||
await fetch(`${process.env.NEXT_PUBLIC_HUB_SERVER_URL}/mail/send`, {
|
||||
method: "POST",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
|
||||
body: JSON.stringify({
|
||||
to: email,
|
||||
subject,
|
||||
html,
|
||||
}),
|
||||
});
|
||||
};
|
||||
|
||||
export const sendMailByTemplate = async (
|
||||
email: string,
|
||||
template: "password-change" | "course-completed",
|
||||
data: any,
|
||||
) => {
|
||||
try {
|
||||
const res = await fetch(
|
||||
`${process.env.NEXT_PUBLIC_HUB_SERVER_URL}/mail/template/${template}`,
|
||||
{
|
||||
method: "POST",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
|
||||
body: JSON.stringify({
|
||||
to: email,
|
||||
data,
|
||||
}),
|
||||
},
|
||||
);
|
||||
console.log(res);
|
||||
} catch (error) {
|
||||
console.error("Error sending mail:", error);
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user