Table of Contents:


Email Messages 

Does Ongage support text only emails

Exception to this rule:

How can I implement dynamic images in an email message 

  1. Lets say you'd like to display different logos to different contacts based on the brand they're associated with. You can create a list field, let's say its name is 'logo', that will contain the name of the logo image. E.g., Target, Starbucks, etc.
  2. You'll need an external image server to host the logo images. The names of the images need to match the value in the list field, e.g., Target, Starbucks, etc.
  3. You need to make sure that each contact has the correct logo value in their list field.
  4. Then in the body of the email message use the dynamic list field in the URL of the image, as in the following example: 
<img src="http://your.external.server/{{logo}}" width="50" height="50">

So that contact 1 with value 'Target' in their this list field will get the 'Target' logo, and contact 2 with with value 'Starbucks' in their list field will get the Starbucks logo.

For more about dynamic content in general see the following 2 sections:

  1. Ongage Feeds: HTML, RSS, XML and JSON
  2. Content and search there for 'if-then-else'

Responsive Email Messages

What does Ongage offer regarding responsive email messages

  1. All the templates in the 'Ongage Free Templates' folder under the Content → Templates Library are responsive.
  2. All email messages created with the BEE Free editor are responsive.
  3. You can use this online tool to covert plain HTML into Responsive code: https://foundation.zurb.com/emails/inliner-v2.html

HTML/WYSIWYG Editor 

How to create a new line vs. a new paragraph

In the Ongage HTML/WYSIWYG editor:

Grammarly is currently not compatible with the Ongage HTML/WYSIWYG editor

The popular English grammar and proofreading software - Grammarly browser extension is currently incompatible with Ongage's WYSIWYG editor, as it ends up adding thousands of characters of HTML code into the final HTML email message, which can cause errors when sending. Therefore till further notice, you'll need to remove or disable this extension when editing email messages in Ongage. Ongage will be looking at how to support this extension in the future.

How to turn-off link wrapping/tracking for a specific link in an email message

In the email message editor:

  1. Double click the link you wish not to track clicks and click counts.
  2. And check the 'Don't track this link' checkbox as illustrated in following screenshot. This will also cause clicks not to be counted.

    (info) Typically you'll want to do this if you're managing unsubscribes with your own unsub link. Ongage's unsubscribe link automatically does not count clicks on it. 

Can anyone use an external image server for hosting HTML email images?

Yes, in order to use External Images hosted on another server, one can follow steps given below.

  1. Go to Email Message >> Email Message Editor.
  2. Click on the "Image" button in the edit WYSIWYG editor.
  3. It pops up with a new screen where you can add the URL of the images that are hosted outside the server.

(info) Note: Customers who host images on an external image server, will typically compose the HTML with the URLs to the image server outside of Ongage and then simply copy and paste the HTML into the HTML tab of the wysiwyg editor.

Appendix

Why are emails messages sent as multipart with a Text part 

As noted above emails messages are sent Content-Type: multipart/alternative; Meaning both an HTML part (Content-Type: text/html; charset=UTF-8) and Text part (Content-Type: text/plain; charset=UTF-8).