Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Customize your mail layout with custom CSS.

...

For example to remove the preamble text of each mail from Mail Page Cloud type in following line in the textarea:

Code Block
#mail-header { display: none; }

...

If you want to customize specific html elements on your Confluence page when sending as mail, view the source code on the Confluence page:

confluence-view-source.pngImage Added

And search in the source code for specific classes, that you want to customize. For example hide the border of the embedded images on the Confluence page shown in the mail:

Code Block
img.confluence-embedded-image {
  border-style: none;
}