Ant タスク送信メール - メール タイプは、ネストされた「添付ファイル」要素をサポートしていません。
私は Maven を使用して、TestNG を使用してテスト自動化スクリプトを実行しています。私は maven antrun プラグインを使用して、添付ファイルにテスト NG レポートを含む電子メールを送信しています。
残念ながら、添付ファイル付きのメールを送信できず、次のようなエラーが発生します
埋め込みエラー: mail> タイプは、ネストされた「添付ファイル」要素をサポートしていません。
ここに私のpom.xmlがあります
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<configuration>
<tasks>
<mail
tolist=""
from=""
subject="Report"
mailhost=""
mailport=""
user=""
password="">
<message>Please find the Attached automation report.
Note: This is an automatic generated e-mail
</message>
<attachments>
<fileset dir="target">
<include name="**/*.html"/>
</fileset>
</attachments>
</mail>
</tasks>
</configuration>
<phase>test</phase>
<id>SentEmail</id>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>