The Pinpointe Playbook

Pro-Tips for getting the most out of Pinpointe!

API - Delete Content Blocks Members Public

This API deletes content blocks. { "//DOC": [ "ContentBlock::DeleteContentBlock", "", "Delete a content block.", "", " id [int, required]: content block id" ], "username": "johnsmith@pinpointe.com", "usertoken": "XXX", "requesttype": "ContentBlock"

The Pinpointe Playbook

API - Create Content Blocks Members Public

Note: If you are entering a more complex Content Block in the content field that requires double quotes in it, they must be entered and exited with a backslash Example: content: "{{#if (eq [First-Name] "Tommy")}}Hello there. {{[First-Name]}}{{else}}What is your name?{{/if}}" { "//DOC&

The Pinpointe Playbook

Content Blocks - Inserting the Content Block with the Basic Editor Members Public

In the Basic Editor, you can type in the Content Block with the same "{{> [name of block'}}" formatting (Fig 1).  Fig 1 When receiving emails sent from campaigns using Content Blocks from the Basic Editor, the result is the same as when doing so from the

The Pinpointe Playbook

Content Blocks - Inserting Content Blocks with the DND Builder Members Public

In your Email Campaign, add a Text Widget and type in the Content Block in the text widget. In our example, we're adding our Content Block Name by typing "Hi {{> [Name]}}," After sending out the Email Campaign, this populates the beginning of the email with

The Pinpointe Playbook

Content Blocks - Creating Content Blocks Members Public

Content Blocks allow you to reuse content, including handlebars, for multiple email campaigns.  Before you can add Content Blocks to your Email Campaign, we'll need to create some Content Blocks.  Creating Content Blocks On the left navigation menu, go to Resources -> Content Blocks (Fig 1). Fig

The Pinpointe Playbook

Handlebars - Nesting Helpers Members Public

Nesting Helpers allow you to compare values in the following ways: * Nesting or Helpers - Create fallback chains by nesting multiple or helpers * Example: <!– Triple fallback --> {{or [Preferred-Name] (or [First-Name] "Friend")}} <!-- Even more complex --> {{or [Nickname] (or [Display-Name] (or [First-Name] "

The Pinpointe Playbook

Handlebars - Utility Helpers Members Public

Utility Helpers are optimized for fallback chains. They allow you to compare values in the following ways: * default - Returns the first non-empty value from a list of arguments; extremely useful for providing fallback chains.  * Syntax: {{default field1 field2 field3 "final fallback"}} * Example: <p>Visit our

Mat Bradley-Tschirgi
The Pinpointe Playbook

Handlebars - Logical Helpers Members Public

Logical Helpers allow you to compare values in two ways. The Logical Helpers allow you to compare conditions with AND or OR statements to return more nuanced text to contacts receiving the emails.  * and - Returns true if ALL arguments are true (not null, false, 0, "", empty) * Syntax:

Mat Bradley-Tschirgi
The Pinpointe Playbook