2

I am using this code of snippet

       <mj-text align="center">
        © 2018  or &copy; or &#169;
      </mj-text>  

and this code printing unnecessary  ,like this © . how can i print copyright symbol in mjml ?

Neeraj Amoli
  • 976
  • 1
  • 9
  • 14

2 Answers2

2

You can try it like this:

<mj-text align="center">Copyright &#160;&#169;&#160 </mj-text>

This works fine with mjml 4.0. .

0

I use the MJML app and have no problems in using &#169;

Magnum26
  • 265
  • 2
  • 13