The Recharge Gift Redeemed event triggers a Listrak Custom Event when someone redeems a previously purchased gift. In the journey, you can message the redeemer the information.
This guide will outline the personalization options to customize the journey and messages triggered by the Recharge integration.
Personalizing the Journey with Custom Event Properties
The Custom Event called Recharge Gift Redeemed Recipient [[Your Store Name]] is automatically created as part of the integration process. Recharge passes the following payload to Listrak customized with the specific gift information.
{
"eventCategory": "gift",
"eventType": "GiftRedeemedRecipient",
"eventTimestamp": "2026-04-30T12:00:00.0000000+00:00",
"customer": {
"email": "[email protected]",
"firstName": "Bob",
"lastName": "Jones",
"externalCustomerId": "24662915679999"
},
"product": {
"productId": "15268877402278",
"variantId": "56305470505126",
"title": "Classic Cotton T-Shirt",
"price": "50.00",
"sku": "T100",
"imageUrl": "https://cdn.example.com/tshirt.jpg",
"linkUrl": "https://store.example.com/products/classic-cotton-t-shirt",
"productHandle": "classic-cotton-t-shirt"
},
"gift": {
"id": "873500",
"senderCustomerId": "246936001",
"senderName": "Jane Smith",
"senderEmail": "[email protected]",
"recipientCustomerId": "246936002",
"recipientEmail": "[email protected]",
"amount": "50.00",
"giftCurrency": "USD",
"giftNote": "Enjoy your gift!",
"redemptionLink": "https://example.com/gifts/873500",
"redeemedAt": "2026-04-30T12:00:00.0000000+00:00",
"notificationSentAt": "2026-04-30T11:20:05.0000000+00:00",
"externalGiftProductId": "15268877402278",
"externalGiftVariantId": "56305470505126",
"redeemableProductIds": ["15268877402278"]
}
}
The JSON is saved to a Custom Event field and used to personalize the message. The table below outlines all fields created in Custom Event. Fields other than the JSON can be used as criteria in a Custom Event Decision Split, allowing customers to receive different messages or different logic based on the values of these fields.
Property Name | Data Type |
CustomJson | String |
product_title | String |
customer_billing_city | String |
customer_billing_province | String |
Personalizing the Message with Recharge Data
You can customize any message(s) in the journey based on the data passed in the JSON. The table below outlines the fields you can include in a message to display the data about the redemption. The field values will match what is included in the payload mentioned in the previous section.
Object | Fields Used |
|
|
|
|
You have the option to create a fully coded HTML email from scratch or to edit the template that includes the basic design elements listed below.
If you code a message yourself, you can add any or all of fields from the table above. To display the personalized data, you will use the format {{object.fieldname}}. For example, to display the customer's first name uses the following tag. {{customer.firstName}}.
Example Template
You can also use the example template as a starting point.
[[HB BlockType="Custom" Source="Custom.customJson"]]
<div class="email-wrapper">
<div class="email-container">
<div class="email-header"><div class="brand">Your<span>Store</span></div></div>
<div class="email-hero" style="background: linear-gradient(135deg, #1a2b4a 0%, #0d4a2e 100%);">
<h1>You've redeemed your gift! ✅</h1>
<p>{{customer.firstName}}, your gift from {{gift.senderName}} has been successfully redeemed.</p>
</div>
<div class="email-body">
<p class="greeting">Hi <strong>{{customer.firstName}} {{customer.lastName}}</strong>,<br/><br/>Your gift has been redeemed and your subscription will be set up shortly. Here's a confirmation for your records.</p>
<div style="background:#f0fdf4;border:1px solid #bbf7d0;border-radius:8px;padding:16px 20px;margin:0 0 28px;font-size:14px;color:#166534;line-height:1.6;">
Gift successfully redeemed on {{gift.redeemedAt}}.
</div>
<table class="detail-table">
<tr><td class="label">Gift From</td><td class="value">{{gift.senderName}}</td></tr>
<tr><td class="label">Gift Amount</td><td class="value">${{gift.amount}} {{gift.giftCurrency}}</td></tr>
<tr><td class="label">Redeemed On</td><td class="value">{{gift.redeemedAt}}</td></tr>
<tr><td class="label">Gift Note</td><td class="value">{{gift.giftNote}}</td></tr>
<tr><td class="label">Gift ID</td><td class="value">{{gift.id}}</td></tr>
</table>
</div>
<div class="email-footer">
<p class="footer-brand">YourStore</p>
<p>This email was sent to {{customer.email}}</p>
</div>
</div>
</div>
[[/HB]]