Comment on page
Email SMTP
Requires the Email SMTP integration to be set up
Send simple Email
const mailer = libs.email.get();
await mailer.sendMail({
to: "[email protected]", // list of receivers
subject: "Hello ✔", // Subject line
text: "Hello world?", // plain text body
html: "<b>Hello world?</b>", // html body
});
Last modified 2yr ago