[FNAME] When First Name does not exist

russellstutely

New Member
When sending a campaign and using the Hi [FNAME].. Is there a way to add a default such as Hi there, if the subscriber does not have a First Name listed?
 
When sending a campaign and using the Hi [FNAME].. Is there a way to add a default such as Hi there, if the subscriber does not have a First Name listed?
You can use twig, something like this: {% if FNAME %}Hi [FNAME] {% else %}Hi there{% endif %}
to enable this feature go to: Backend > Settings > Campaigns > Template engine.
Also check twig examples: https://twig.symfony.com/doc/3.x/templates.html
 
Back
Top