Hello everyone, my application uses CKeditor to write email messages, I'm using "11" as default font size in config.js:
fontSize_defaultLabel="11"
but when I receive emails, it doesn't inform anything about the font properties, so for example if write "default size" without changing anything and add "size 16", select the text and change the font size to 16, I see the difference in the editor but they look like the same in my email client (Microsoft Outlook) because the default HTML font size is 16. The source of the message is:
<p>default size</p>
<p><span style="font-size: 16px">size 16</span></p>
Do I have to change something else other than config.js or is there a way to specify the property of the default font in the output to match my configuration?
Thank you.