Using LowMail

This section shows you how to build your own email sending app/service

Enabling all email products

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();
}

Enabling specific email products

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();
}

When run, this would open up the Lamba UI with the email product for the user to choose from, connect, and then use after connection.

Things you can build with the email service on Lamba JS library and the API:

  1. Marketing Email Campaigns:

    • Example: Create targeted and personalized email campaigns for product launches, promotions, or newsletters. Utilize Lamba's integration with services like Sendgrid to manage large-scale email distributions.

  2. Transactional Email Services:

    • Example: Set up automated emails for transaction confirmations, order receipts, shipping notifications, and password resets. These can be integrated with your e-commerce platform or website.

  3. Automated Customer Support System:

    • Example: Develop an automated support system that sends immediate acknowledgment emails to customer inquiries and routes them to the appropriate department for follow-up.

  4. Event and Appointment Reminders:

    • Example: Create a system for sending automated reminders for upcoming appointments or events. This could be particularly useful for businesses like clinics, salons, or event management companies.

  5. Feedback and Survey Emails:

    • Example: Send out feedback request emails post-purchase or post-service. Use this to gather valuable customer feedback or conduct market research through integrated surveys.

  6. Frontend Email Sending via JavaScript:

    • Example: Implement a functionality that enables users to send emails directly from the frontend of a website or application using JavaScript. This feature is especially useful for contact forms, feedback submissions, and real-time user communication, allowing for immediate and seamless email interactions without backend complexity.

Each of these applications leverages the power of Lamba's email service to enhance communication, improve customer engagement, and streamline business processes.

Last updated

Was this helpful?