yeah tried all that maybe my limited
yeah, tried all that, maybe my limited knowledge in TS I can't accomplish it 

: PagesFunction.: PagesFunctionimport mailChannelsPlugin from "@cloudflare/pages-plugin-mailchannels";
export const onRequest = mailChannelsPlugin({
personalizations: [
{
to: [
{
name: "ACME Support",
email: "support@example.com"
}
]
}
],
from: {
name: "ACME Support",
email: "support@example.com"
},
respondWith: () => {
return new Response(`Thank you for submitting your enquiry. A member of the team will be in touch shortly.`);
}
});