Giulio Z
Giulio Z
CDCloudflare Developers
Created by Giulio Z on 1/13/2024 in #workers-help
"Could not send your email. Please try again." with MailChannels Pages Plugin
Thanks @DarkDeviL it was actually that
7 replies
CDCloudflare Developers
Created by Giulio Z on 1/13/2024 in #workers-help
"Could not send your email. Please try again." with MailChannels Pages Plugin
import mailChannelsPlugin from "@cloudflare/pages-plugin-mailchannels";

export const onRequest: PagesFunction = (context) =>
mailChannelsPlugin({
personalizations: [
{
to: [{ name: "Giulio Zanchetta", email: "[email protected]" }],
dkim_domain: "majestico.it",
dkim_selector: "mailchannels",
dkim_private_key: context.env.DKIM_PRIVATE_KEY,
},
],
from: {
name: "Enquiry",
},
respondWith: () =>
new Response(null, {
status: 302,
headers: { Location: "/thank-you" },
}),
})(context);
import mailChannelsPlugin from "@cloudflare/pages-plugin-mailchannels";

export const onRequest: PagesFunction = (context) =>
mailChannelsPlugin({
personalizations: [
{
to: [{ name: "Giulio Zanchetta", email: "[email protected]" }],
dkim_domain: "majestico.it",
dkim_selector: "mailchannels",
dkim_private_key: context.env.DKIM_PRIVATE_KEY,
},
],
from: {
name: "Enquiry",
},
respondWith: () =>
new Response(null, {
status: 302,
headers: { Location: "/thank-you" },
}),
})(context);
7 replies