飛行機の色やGmailで何かやっていることを初めて知っていると思います。私は何かを逃しているに違いない。Gmailでメッセージ本文が文字化けしています
私は、テストレポートの自動化された配信のためにアリメールタスクを使用 - ここで私はメールのメール送信試験体でTestNGのによって生成されたレポート(だけでなく、添付ファイルを)遣わすで
<target name="sendtestreport">
<tstamp>
<format property="current.time" pattern="MM/dd/yyyy hh:mm" />
</tstamp>
<property name="subject" value="Selenium Test Report: " />
<mail mailhost="test.de" mailport="25" subject="${subject} ${current.time}"
user="[email protected]" password="password" messagemimetype="text/html">
<from address="[email protected]" />
<replyto address="[email protected]" />
<to address="[email protected]" />
<message src="${basedir}\test-output\emailable-report.html">If you have trouble viewing the message then open attachment</message>
<attachments>
<fileset dir="${basedir}">
<include name="**/emailable-report.html"/>
</fileset>
</attachments>
</mail>
</target>
。私のGmailアカウントのメッセージが間違ってフォーマットされていると、色が表示されず、テキストが重なり、位置がずれています。 Yahooのメールでは完璧に見えます。
メッセージを適切な形式で表示するには、Gmailで変更する必要のある設定はありますか? Gmailの動作に問題はありますか?
私はFF 8とChrome 15の両方を試しました。いいえIE – Tarun