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.
Ho limitato la larghezza e centrato il contenuto dell’email qui:
Da un invio di prova:
Ho usato le tabelle per limitare la larghezza e centrare, il che dovrebbe garantire che funzioni con i client di posta elettronica meno recenti:
<table>
<tr>
<td></td>
<td width="650">tutto il contenuto dell'email all'interno di questa td</td>
<td></td>
</tr>
</table>
Nota che una larghezza impostata su un td funziona più come una max-width e il contenuto si ridurrà comunque per adattarsi ai dispositivi più piccoli.