Method 1: Use the delivery API (Preferred)
The delivery API is a POST request that works with build-time email. This option is the preferred method for build-time email.
Most email clients do not allow POST requests. Therefore, this API is not recommended for open-time use cases. Some email clients, such as Gmail or Outlook, can cache the content or block the image and require the recipient to pro-actively allow the image to render.
You cannot return default content using the delivery API.
The following code is a sample API delivery request:
curl -X POST \
'https://clientcode.tt.omtrdc.net/rest/v1/mbox/?client=clientcode' \
-H 'authorization: Bearer 3423614b-4843-4664-83c4-c6c3f6c8869b' \
-H 'cache-control: no-cache' \
-H 'content-type: application/json' \
-d '{
"mbox" : "email-mbox",
"tntId" : "111499796294071-449025.28_44",
"requestLocation" : {
"host" : "prod"
},
"profileParameters" : {
},
"mboxParameters" : {
"at_property": "b468a242-64a4-32a0-ca0c-890bddd78789",
"entity.id": "article-123",
"entity.event.detailsOnly" : "true"
}
"contentAsJson": true
}'
Where clientcode
is your Target client code.
sessionId
and one of tntId
or thirdPartyId
for each email recipient (for example, for each API call). If you do not provide unique values for these fields, API response can slow or fail due to many events generated within a single profile.See Delivery API documentation for more information.
Method 2: Use a rawbox email template
A rawbox is similar to an mbox request, but for non-Web environments, such as email service providers (ESPs). Because you don’t have the Adobe Experience Platform Web SDK or at.js to use in rawbox requests, you must create your requests manually. The examples below explain how to work with rawbox requests in email.
This approach allows you to track performance of recommendations in emails, test them in the normal way with a recommendation, and continue tracking on the site.
Set up a Recommendations activity in Target, using the Form-Based Experience Composer option. For the location, select the name of the mbox you’ve chosen to use in the rawbox request coming from the ESP. Select a design with the look and feel you want for your email. At email build time, the ESP makes a call to the Target servers for each rawbox in each email being generated. Your ESP must have a way to include the returned HTML in the email when it is sent.
The email system you use must be able to handle the following scenarios:
A valid response is received, but no recommendations are present
- In this case, the response is whatever is set as the
mboxDefault
parameter value. See explanation below on this parameter. - The email provider should have a default HTML block of recommendations to use in this case.