26 lines
706 B
TypeScript
26 lines
706 B
TypeScript
// Setup type definitions for built-in Supabase Runtime APIs
|
|
import "jsr:@supabase/functions-js/edge-runtime.d.ts";
|
|
const RESEND_API_KEY = Deno.env.get('RESEND_API_KEY');
|
|
Deno.serve(async (req)=>{
|
|
const { to, subject, html } = await req.json();
|
|
const res = await fetch('https://api.resend.com/emails', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
Authorization: `Bearer ${RESEND_API_KEY}`
|
|
},
|
|
body: JSON.stringify({
|
|
from: 'sigap-support@gmail.com',
|
|
to,
|
|
subject,
|
|
html
|
|
})
|
|
});
|
|
const data = await res.json();
|
|
return new Response(JSON.stringify(data), {
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
}
|
|
});
|
|
});
|