HTML Email Renders Differently in Outlook 2003 after Upgrading to JIRA 4

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

症状

When viewing an issue notification email in Outlook 2003 the font size is much larger than normal.

原因

JIRA 4.x now uses cascading style sheets instead of tables for HTML email notifications. Outlook 2003 doesn't render the font size properly even though the CSS is valid.

ソリューション

Edit $JIRA/atlassian-jira/WEB-INF/classes/templates/email/html/includes/header.vm , line 12:

<style type="text/css">
        body {
            background-color:#f0f0f0;
            font-size:12px;
        }
<!-- Add the line below -->
        td {font-size:12px;}
    </style>
最終更新日: 2016 年 2 月 26 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.