Using LowMail
This section shows you how to build your own email sending app/service
function openBuilder(){
const lamba = new Lamba({
title: "Lamba",
icon: 'https://ik.imagekit.io/lambahq/lamba-dark.png',
theme: "light",
appId: "65aabeba6182d6903a2ea355",
customerId: "cus_x1847",
enabledServices: ["low_mail"], // enables all the email products in the `low_mail` service
usageCapabilities: ['connect','use'],
});
// call the `open` method on the lamba instance to open up the Lamba interface
lamba.open();
}function openBuilder(){
const lamba = new Lamba({
title: "Lamba",
icon: 'https://ik.imagekit.io/lambahq/lamba-dark.png',
theme: "light",
appId: "65aabeba6182d6903a2ea355",
customerId: "cus_x1847",
enabledServices: {low_mail: ["gmail","sendgrid"]}, // enables only "gmail" and "sendgrid"
usageCapabilities: ['connect','use'],
});
// call the `open` method on the lamba instance to open up the Lamba interface
lamba.open();
}Last updated