When inserting a customer’s name into your email or subject line, it’s important to make sure the name looks natural. If you skip name validation, you might end up with greetings like:Documentation Index
Fetch the complete documentation index at: https://help.maestra.io/llms.txt
Use this file to discover all available pages before exploring further.
Hi, 123test!qwerty, good morning!
Adding Recipient’s Name to Your Campaigns
Example 1@{if IsEmpty(Recipient.OnlyStandardFirstName)}Hello there!@{else}Hello, ${Recipient.OnlyStandardFirstName}!@{end if}
- If the first name is not standard or not provided display: “Hello!”
- If the first name is standard display: “NAME, hello!”
@{if IsEmpty(Recipient.OnlyStandardFirstName)}Good afternoon!@{else}${Recipient.OnlyStandardFirstName}, good afternoon!@{end if}