When pasting HTML content into the Fullpath Custom Campaign editor, please ensure that your content adheres to the following guidelines to achieve the best results:
Supported HTML Elements
Text Formatting Tags :
- <b> or <strong>: Bold text
- <i> or <em>: Italic text
- <u>: Underlined text
- <s>: Strikethrough text
List Elements :
- <ul>: Unordered lists
- <ol>: Ordered lists
- <li>: List items (can be included within <ul> or <ol>)
Headings :
- <h1>, <h2>, <h3>, <h4>, <h5>, <h6>: Various levels of headings
Block Elements :
- <p>: Paragraphs
Links and Images :
- <a href="URL">: Hyperlinks (ensure to use absolute URLs)
- <img src="URL" alt="description" width="X" height="Y">: Images (absolute public URL only; ensure the image is accessible).
- Always specify width and height attributes for images to ensure proper display within the editor.
Important to note: < table > elements may NOT be used in HTML emails |
Using Inline Styles within Span Tags for text and color styling
Inline styles should be applied within <span> tags , not directly on the HTML elements themselves. This helps organize your styles.
Coloring with RGB Values :
- Use style="color: rgb(r, g, b);" to set the text color.
Background Color :
- Use style="background-color: rgb(r, g, b);" to set the background color.
Important Notes
- No <div> Elements : Please note that <div> elements are not allowed in the Quill rich text editor. You can achieve similar visual effects using block elements like <p>, <h2>, and lists.
- Image URLs : Ensure any images used are from public URLs to guarantee they display correctly. Always specify width and height attributes.
- No < table > elements supported in HTML emails