header
login

Email Integration

TheQueue supports email through the InboxEngine microservice. Send notifications, confirmations, and automated emails from your bots.

Features

  • Send email notifications from bot workflows
  • Automatic emails triggered by specific events
  • Email templates with dynamic data
  • Order and booking confirmations

Usage

To send an email, use the HTTP request function with InboxEngine settings:

url: http://localhost:3002/send
method: POST
body: {
  "to": "{=user_email=}",
  "subject": "Order Confirmation",
  "text": "Your order #{=order_id=} has been accepted"
}

Variables in Emails

Use variables for personalization:

Hello, {=user_name=}!
Your order #{=order_id=} for {=total=} has been accepted for processing.

Use Cases

  • Registration confirmation
  • New order notifications
  • Booking reminders
  • Sending reports and summaries