mirror of
https://github.com/certd/certd.git
synced 2026-04-14 04:20:52 +08:00
13 lines
239 B
TypeScript
13 lines
239 B
TypeScript
import { request } from "/src/api/service";
|
|
const apiPrefix = "/basic/email";
|
|
|
|
export async function TestSend(receiver: string) {
|
|
await request({
|
|
url: apiPrefix + "/test",
|
|
method: "post",
|
|
data: {
|
|
receiver
|
|
}
|
|
});
|
|
}
|