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.
メールコンテンツの幅を制限し、中央揃えにしました。
テスト送信からのものです。
幅を制限し中央揃えにするためにテーブルを使用しました。これにより、古いメールクライアントでも機能するはずです。
<table>
<tr>
<td></td>
<td width="650">all email content within this td</td>
<td></td>
</tr>
</table>
tdに設定された幅はmax-widthのように機能し、コンテンツは小さいデバイスに合わせて縮小されることに注意してください。