When we used stash we send email from plugin by this:
String EMAIL_STYLES_MODULE = "com.atlassian.stash.stash-notification:notification-email-styles";
SoyMailMessageRequest messageRequest = new SoyMailMessageRequest.Builder()
.cssModuleKey(EMAIL_STYLES_MODULE)
.context(emailData)
.recipients(Lists.newArrayList(target))
.soyTemplateModuleKey(SOY_EMAIL_TEMPLATE_MODULE)
.soyTemplateName("plugin.watchers.email")
.subjectKey(subjectKey)
.build();And now want to migrate plugins to bitbucket
but i can't fine any information about new available list of cssModuleKey
"com.atlassian.stash.stash-notification:notification-email-styles" - don't work
i found solution
com.atlassian.bitbucket.server.bitbucket-notification:notification-email-styles
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.