El correo electrónico de resumen necesita un límite de ancho

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!

9 Me gusta

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.

5 Me gusta

He restringido el ancho y centrado el contenido del correo electrónico aquí:

Desde un envío de prueba:

He utilizado tablas para restringir el ancho y centrar, lo que debería garantizar que funcione con clientes de correo electrónico más antiguos:

<table>
  <tr>
    <td></td>
    <td width="650">todo el contenido del correo electrónico dentro de este td</td>
    <td></td>
  </tr>
</table>

Tenga en cuenta que un ancho establecido en un td funciona más como un max-width, y el contenido aún se reducirá para adaptarse a dispositivos más pequeños.

5 Me gusta