sendEmail
This server side api function does support the same parameters (Attachements and so on) as ComposeEmail from the client side api. Emails are sent automatically, as there is no UI.
await brixxServerApi.sendEmail({
to: ["[email protected]"],
text: "Hello World",
subject: "Demo Email",
});
Last modified 3mo ago