Make.com Integration
Build complex, visual automation scenarios in Make.com to trigger emails through Reloop.
Make.com (formerly Integromat) is a powerful visual automation platform. You can connect Reloop to any Make scenario using either:
- SMTP Connection (using Make's built-in Email app)
- REST API Connection (using Make's built-in HTTP app)
Method 1: SMTP via Make's Email App
The standard Email app in Make allows you to send transactional messages instantly using Reloop SMTP.
Step 1: Add the Email Module
- In your Make scenario, click Add module (+).
- Search for and select the Email app.
- Select the Send an email module.
Step 2: Create a Connection
-
Click Add next to the Connection drop-down.
-
Choose Other SMTP server as your connection type.
-
Configure the connection settings:
- Connection name:
Reloop SMTP - SMTP server:
smtp.reloop.dev - Port:
587 - Use secure connection:
TLSorSTARTTLS(recommended) - Username: Your Reloop API Key (starts with
rl_) - Password: Your Reloop API Key (starts with
rl_)
- Connection name:
-
Click Save.
Step 3: Map Email Details
Configure the fields inside the Email module:
- To: Add recipients (use dynamic values from previous nodes, e.g., CRM contacts).
- Subject: Enter a subject line.
- Content: Choose
HTMLorPlain Textand compose your message body. - Sender: Click Show advanced settings and enter a verified sender email address from your Reloop dashboard (e.g.,
sales@yourdomain.com).
Method 2: REST API via Make's HTTP App
If you want to use advanced features like email templates, tagging, or attachment files from Google Drive or Dropbox, you can call the Reloop API directly.
Step 1: Add the HTTP Module
- In your Make scenario, click Add module.
- Search for and select the HTTP app.
- Select the Make a request module.
Step 2: Configure the API Request
Configure the module fields as follows:
- URL:
https://reloop.sh/api/mail/v1/send - Method:
POST - Headers:
- Item 1:
- Name:
x-api-key - Value: Your Reloop API Key (starts with
rl_)
- Name:
- Item 2:
- Name:
Content-Type - Value:
application/json
- Name:
- Item 1:
- Body type:
Raw - Content type:
JSON (application/json) - Request content: Compose the JSON payload. For example:
{
"from": "Support Team <support@yourdomain.com>",
"to": "{{1.email}}",
"subject": "Ticket Resolved",
"html": "<p>Hi {{1.name}}, your support ticket has been closed.</p>",
"tags": [
{
"name": "type",
"value": "transactional"
}
]
}
Note: Replace {{1.email}} and {{1.name}} with mapping variables from previous nodes in your Make scenario.
- Parse response:
Yes(this allows subsequent nodes to easily reference themessageIdand status).
Step 3: Run the Scenario
Click Run once at the bottom left of the Make dashboard to test. Verify the execution bubbles show green checkboxes, check the recipient's inbox, and inspect the delivery logs in the Reloop Dashboard.
Was this page helpful?