我有一个生成链接的Java代码。
我希望能够将其放入我使用Maven-postman-plugin发送的电子邮件正文中。
我已尝试通过
将其保存在系统属性中System.setProperty("Link","http://abc/def/etc");
并使用来自pom。
的$ {Link}访问它<plugin>
<groupId>ch.fortysix</groupId>
<artifactId>maven-postman-plugin</artifactId>
<version>0.1.6</version>
<executions>
<execution>
<id>send a mail</id>
<phase>package</phase>
<goals>
<goal>send-mail</goal>
</goals>
<inherited>false</inherited>
<configuration>
<from>abc@abc.in</from>
<subject>Link</subject>
<htmlMessage>link ${Link}</htmlMessage>
<failonerror>true</failonerror>
<mailhost>mail.abc.com</mailhost>
<receivers>
<receiver>abc@abc.in</receiver>
</receivers>
</configuration>
</execution>
</executions>
</plugin>
然而这无效。