For the complete documentation index, see llms.txt. This page is also available as Markdown.

Tutorials

Add GrowSurf referral links and progress data to Loops emails.

Once GrowSurf syncs participants to Loops, you can insert their referral link and progress into campaign and workflow emails. Loops uses a Contact Property's camelCase API name inside braces.

Use the synced grsfShareUrl property as the link and visible text:

<p>Give your friends a reason to join.</p>
<p>Copy and paste your unique referral link to share:</p>
<p>
  <a href="{grsfShareUrl}">{grsfShareUrl}</a>
</p>

Replace YOUR_PROGRAM_ID with your GrowSurf Program ID. If you use a custom Referral Portal domain, replace the https://grow.surf/YOUR_PROGRAM_ID portion with that URL.

<a href="https://grow.surf/YOUR_PROGRAM_ID?grsf_email={email}&grsf_first_name={firstName}&grsf_last_name={lastName}">
  View your referral progress
</a>

Show referral progress

<p>You have made {grsfTotalReferralCount} referrals so far.</p>

Loops asks you to set a fallback when you insert Contact Properties through its editor. Add a fallback for optional values, so an email still sends when that value is empty. See Personalizing emails for Loops' current syntax and fallback behavior.

Last updated

Was this helpful?