Braze
Emplifi Ratings & Reviews can integrate with Braze for email sending. We trigger transactional email sends through the Braze API /messages/send
endpoint.
To integrate with Braze as your ESP, provide the following to your CSM:
Dashboard URL you use to log in (this determines which REST endpoint we call)
App ID to identify the account
Bearer Token for authentication
Campaign ID for each of the Email Types you want to send
Message Variation ID for each of the Email Types you want to send
From name
From address
Example payload
curl --location 'https://rest.iad-05.braze.com/messages/send' \
--header 'Authorization: Bearer <BEARER TOKEN>' \
--header 'Content-Type: application/json' \
--data-raw '{"external_user_ids": [
"4910c1fc40221486f6ec6beedc21a1d4c345ed49d07fdb8865c489e487fcc42d"
],
"campaign_id": "41948125-7b3d-9547-72cf-3e45bdad1f68",
"recipient_subscription_state": "all",
"messages": {"email": {"app_id": "f6f4d056-e2de-6115-6944-91f0dcb3cc38",
"subject": "Alfred, how do you like your Grand Super Product?",
"from": "ACME Store <service@notifications.example.com>",
"reply_to": "service@notifications.example.com",
"message_variation_id": "email-17618", messageVariationMap
"body": "<HTML>"}}}'