Send Triggered Email
To send a triggered email, use the following URL pattern:
https://api.bluefox.email/v1/send-triggered
Replace the placeholders with your specific information:
##EMAIL_ID##
##YOUR_API_KEY##
You can find the required IDs by clicking the Code Guide button on a triggered email card:
In the Code Guide dialog, these values are automatically filled in. If you copy the code snippets, make sure to replace ##YOUR_API_KEY##
.
Request Body
json
{
"emails": ["jon@doe.com"],
"triggeredId": "##EMAIL_ID##",
"data": {
"example": "example merge tag value"
},
"attachments": [] // optional
}
You can include personalization data (merge tags) in the data
object. These tags are processed by Handlebars when the email is sent.
cURL Example
bash
curl -X POST \
"https://api.bluefox.email/v1/send-triggered" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer ##YOUR_API_KEY##" \
-d '{
"emails": ["jon@doe.com"], // TODO: Change email addresses
"triggeredId": "##EMAIL_ID##",
"data": {
// TODO: Add merge tag values
}
}'
JavaScript Example
javascript
const url = 'https://api.bluefox.email/v1/send-triggered';
const response = await fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer ##YOUR_API_KEY##' // TODO: Replace ##YOUR_API_KEY##
},
body: JSON.stringify({
emails: ['jon@doe.com'], // TODO: Change email address
triggeredId: "##EMAIL_ID##",
data: {
// TODO: Add merge tag values
}
})
});
PHP Example
php
$apiKey = "##YOUR_API_KEY##";
$url = "https://api.bluefox.email/v1/send-triggered";
$emails = ["jon@doe.com"]; // TODO: Change email addresses
$triggeredId = "##EMAIL_ID##";
$data = [
// TODO: Add merge tag values
];
$payload = json_encode([
"emails" => $emails,
"triggeredId" => $triggeredId,
"data" => $data
]);
$options = [
"http" => [
"header" => [
"Content-Type: application/json",
"Authorization: Bearer $apiKey"
],
"method" => "POST",
"content" => $payload,
],
];
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);