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.

Example 1

   await brixxServerApi.sendEmail({
            to: ["john.doe@acme.com"],
            text: "Hello World",
            subject: "Demo Email",
        });

See also client side api composeEmail

Last updated