You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
body "Dear ${params.user.name}, \n Your job has been ${statusMessage}.\n\n More details can be found at the following link: ${params.service.url}/index.html#!jobs/${params.project}"
154
154
}
155
155
}
@@ -174,7 +174,7 @@ workflow.onComplete {
174
174
if (params.send_mail && params.user.email !=null) {
175
175
sendMail{
176
176
to "${params.user.email}"
177
-
subject "[${params.service.name}] Job ${params.project} is complete."
177
+
subject "[${params.service.name}] Job ${params.project} is complete"
178
178
body "Dear ${params.user.name}, \n Your imputation job has finished succesfully. The password for the imputation results is: ${params.encryption_password}\n\n You can download the results from the following link: ${params.service.url}/index.html#!jobs/${params.project}"
179
179
}
180
180
println"::message:: Data have been exported successfully. We have sent a notification email to <b>${params.user.email}</b>"
@@ -188,7 +188,7 @@ workflow.onComplete {
188
188
if (params.send_mail && params.user.email !=null) {
189
189
sendMail{
190
190
to "${params.user.email}"
191
-
subject "[${params.service.name}] Job ${params.project} is complete."
191
+
subject "[${params.service.name}] Job ${params.project} is complete"
192
192
body "Dear ${params.user.name}, \n Your PGS job has finished successfully. \n\n You can download the results from the following link: ${params.service.url}/index.html#!jobs/${params.project}"
193
193
}
194
194
println"::message:: Data have been exported successfully. We have sent a notification email to <b>${params.user.email}</b>"
0 commit comments