Jenkins email-ext预先发送的groovy脚本正在附带

时间:2015-08-12 17:03:35

标签: jenkins jenkins-plugins email-ext

我在预发送脚本中输入了这个简单的行:

msg.setContent("Hi there!" , "html/text");

当我收到电子邮件时,正文是空的,并附有一个包含Hi的文件!

在电子邮件正文中我需要做些什么呢?

1 个答案:

答案 0 :(得分:1)

你写了一个错误的mime-type。以下应该有效:

msg.setContent("Hi there!" , "text/html"); // not "̶h̶t̶m̶l̶/̶t̶e̶x̶t̶"̶

可以找到可用的mime类型的完整列表here