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>