Special Links

Special Links offer a user-friendly way to add dynamic content to your designs. This feature highlights special links with easily recognizable names, making them simple to identify and use without needing to read code.
You can pass the appearance object during initialization like this:
mailui.init({ specialLinks: { first_name: { label: "First Name", value: "{{first_name}}", }, last_name: { label: "Last Name", value: "{{last_name}}", } } });
You can group a set of merge tags into a sub-menu by nesting a mergeTags object within another.
mailui.init({ specialLinks: { user: { label: "User Info.", specialLinks: { first_name: { label: "First Name", value: "{{user.first_name}}" }, last_name: { label: "Last Name", value: "{{user.last_name}}" }, } } } });

Explore Our Email Builder