Beefree
About Beefree
Access
Beefree is primarily used by the Lifecycle Marketing team. We have limited seats, but we do assign to team members that need to build specialized emails.
To request access, complete a request in Lumos. If your access is approved, you will receive an email inviting you to our Beefree organization.
To login: Click on the Beefree tile in Okta, then select the “SSO” option on the login screen.
When to use Beefree
Training
- Hands-on training video
Integrations
Beefree will be integrated with Marketo and Iterable. To follow along on the project status, please see this Asana project.
Using Tokens with BeeFree and Marketo
BeeFree uses the term “merge tags” for dynamic content, but since we’re integrated with Marketo, we use Marketo Tokens instead.
When building emails in BeeFree for Marketo, add tokens using the format {{my.tokenName}}
. For UTM tracking in links, use {{my.utm}}
.
Temporary Workaround: Custom HTML Button
Due to a confirmed internal bug in BeeFree affecting button rendering in Outlook dark mode, use this HTML solution:
- Drag an HTML block onto your canvas
- Insert this code:
<table border="0" cellspacing="0" cellpadding="0" width="100%" style="text-align: left;">
<tr>
<td style="padding-left: 25px; padding-top: 10px; text-align: left;">
<table border="0" cellspacing="0" cellpadding="0" align="left">
<tr>
<td bgcolor="#A989F5" style="border-radius:4px;">
<a href="https://events.gitlab.com/e/event-epic-conference-singapore/?{{my.utm}}"
target="_blank"
style="display:inline-block; padding:12px 24px; font-family: 'Inter', helvetica, arial, sans-serif; font-size:18px; font-weight:600; color:#171321; background-color:#A989F5; border-radius:4px; text-decoration:none; border:1px solid #A989F5; line-height: 100%;">
Register now
</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
To customize: Update the URL, button text, and colors as needed.
50f4a7cb
)