Can I customize the email 'container' html too?

:thinking: to test how this works, I added the same lines as above with the absolute url to our logo, to this text content:

but nothing happened for our invitation emails,

  • is any additional work needed?
  • does this still work?

p.s.:

  1. the logo was already in digest emails (only digest), without any input in this text area.
  2. it works for the digest, if I put the html lines in this string: user_notifications.digest.custom.html.header
  3. the above text doesn’t work for the invitation emails. but it works for simple notifs.

update:

can I customize font of the email, using this way?

although fonts in the preview digest has been changed using the uploaded font, in the email, it hasn’t been changed.

also for notifications (and not digest) the codes are shown in the email!

I’ve used this code lines in the header:

<style type="text/css" media="screen, print">

    @font-face {
      font-family: "sans";
      src: url("absolute url to font address on our server");


    }
    
  body, body input,  body select, body textarea,  body button, p, a, strong, center, h6{
    font-family: "sans";}
    
  </style>

<p style="text-align: center; border-bottom: 2px solid #0071BC; padding-bottom: 15px; text-align:center;">
<img src="absolute url to the logo">
</p>

1 Like