Change the default editor in the email

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Nth20
    Member
    • Jun 2025
    • 37

    #1

    Change the default editor in the email

    Hello, where can I change the default editor for composing the emails like font size, line height...please? It is also strange that it often sends a CC to my email address too when I compose and send the emails. How can I get rid of this please?
  • Nth20
    Member
    • Jun 2025
    • 37

    #2
    Like how to change the default line height of the email editor from 1.6 to 1.0 for example please?

    Comment

    • yuri
      EspoCRM product developer
      • Mar 2014
      • 9217

      #3
      There's no parameters. But it's possible by specifying a default HTML content for the field like so:

      Click image for larger version  Name:	image.png Views:	0 Size:	26.3 KB ID:	120116
      If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

      Comment

      • Nth20
        Member
        • Jun 2025
        • 37

        #4
        Originally posted by yuri
        There's no parameters. But it's possible by specifying a default HTML content for the field like so:

        Click image for larger version Name:	image.png Views:	0 Size:	26.3 KB ID:	120116
        Thanks Yuri, I mean the editior of the emails accounts. Where do I put this field please?

        Comment

        • shalmaxb
          Senior Member
          • Mar 2015
          • 1717

          #5
          I change this in the css

          Code:
          .note-editor .note-editable {line-height: 1.2;font-size: 12px;}
          or in newer Themes (Dark)

          Code:
          .note-editor.note-frame .note-editing-area .note-editable {
          padding: 10px;
          overflow: auto;
          font-size: 12px;
          }
          or whatever values.

          To make this upgrade safe, you have to create a custom css: https://docs.espocrm.com/development/custom-css/
          The editor itself is the same in all places.

          Comment

          Working...