Looks like we are missing a max-width on the email summary post content:
Current:
With 700px max-width:
Thanks @pepa for the heads up!
Looks like we are missing a max-width on the email summary post content:
Current:
With 700px max-width:
Thanks @pepa for the heads up!
There’s a code example here that constrains the width of emails sent from Discourse: Customize and style the Discourse outer email template. I’ve tested it on Litmus and seen issues on some email clients when it’s used as the outer wrapper for the summary email. I’m fairly sure those issues can be resolved.
Restringei a largura e centralizei o conteúdo do e-mail aqui:
De um envio de teste:
Usei tabelas para restringir a largura e centralizar, o que deve garantir que funcione com clientes de e-mail mais antigos:
<table>
<tr>
<td></td>
<td width="650">todo o conteúdo do e-mail dentro desta td</td>
<td></td>
</tr>
</table>
Note que uma largura definida em um td funciona mais como uma max-width, e o conteúdo ainda encolherá para caber em dispositivos menores.