Centralize Mail Settings. Keep Code Clean.
Stop embedding mail credentials and HTML layouts inside application repositories. Connect your apps to a single secure API gateway that manages mailers, handles automatic SMTP failovers, and compiles dynamic layouts on the fly.
We got tired of hardcoding SMTP settings. So we built this.
How gSend modernizes your standard transactional email infrastructure.
Packed with Modern Infrastructure Features
An enterprise-grade feature set designed from the ground up for developers.
Separate Client Workspaces
Isolate accounts, templates, and delivery logs. Laravel-level scoping guarantees clients never see each other's configurations.
Fail-Safe Delivery Pipes
Assign priority weights to your mailers. gSend tries the main account first, automatically cascading down the line if an outage occurs.
Live Payload Debugger
Test API payloads inside the browser. Select a template to autofill variables, review the live iframe preview, and watch logs output in real-time.
Abuse & Spacing Guards
Define daily or monthly dispatch limits. Enforce verified domain restrictions to prevent unauthorized senders from using your mail IP.
Blade Layout Compilation
Format email bodies using clean Blade syntax. Dynamically populate variables, compile styling, and render layouts with zero code lag.
Easy Document Attachments
Pass file attachments directly inside your JSON requests using base64 arrays. We handle the binary parsing and pipeline encoding.
Integrate gSend in Under 60 Seconds
Simply send a POST request with your API Key and payload. Customize parameters or let gSend pull compiled layouts from the server using template identifiers.
curl -X POST https://gsend.glofora.com/api/v1/send-mail \
-H "Authorization: Bearer gsend_your_api_key_here" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
"to": "recipient@example.com",
"template_key": "system-welcome",
"variables": {
"user_name": "Sarah Connor"
}
}'
const axios = require('axios');
axios.post('https://gsend.glofora.com/api/v1/send-mail', {
to: 'recipient@example.com',
template_key: 'system-welcome',
variables: {
user_name: 'Sarah Connor'
}
}, {
headers: {
'Authorization': 'Bearer gsend_your_api_key_here',
'Accept': 'application/json'
}
})
.then(res => console.log('Queued with ID:', res.data.log_id))
.catch(err => console.error(err.response.data));
<?php
$client = new \GuzzleHttp\Client();
$response = $client->post('https://gsend.glofora.com/api/v1/send-mail', [
'headers' => [
'Authorization' => 'Bearer gsend_your_api_key_here',
'Accept' => 'application/json',
],
'json' => [
'to' => 'recipient@example.com',
'template_key' => 'system-welcome',
'variables' => [
'user_name' => 'Sarah Connor'
]
]
]);
$data = json_decode($response->getBody(), true);
echo "Logged ID: " . $data['log_id'];
Take Control of Your Email Delivery
Avoid configuration drift, isolate tenants cleanly, and secure credentials in a single source of truth. Try the multi-tenant mail engine today.