代码生成一个链接,需要使用Maven-postman-plugin将链接放在电子邮件正文中

时间:2018-06-13 12:37:08

标签: java maven

我有一个生成链接的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>

然而这无效。

0 个答案:

没有答案