-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEmailTemplate.groovy
45 lines (41 loc) · 1.67 KB
/
EmailTemplate.groovy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//
// This file holds useful functions
// It is based on nf-core's NfcoreTemplate
//
class EmailTemplate {
//
// Construct and send completion email
//
// Returns
// -------
// str
// The HTML email body.
public static email(workflow, params) {
// Set the email subject:
def subject = "[$workflow.manifest.name] SUCCESS: ${workflow.runName}"
if (!workflow.success) {
subject = "[$workflow.manifest.name] FAILED ${workflow.runName}"
}
// Used in ../assets/email_template.html
def email_fields = [:]
email_fields['started'] = workflow.start
email_fields['dateComplete'] = workflow.complete
email_fields['runName'] = workflow.runName
email_fields['uuid'] = workflow.sessionId
email_fields['success'] = workflow.success
email_fields['duration'] = workflow.duration
email_fields['exitStatus'] = workflow.exitStatus
email_fields['errorMessage'] = (workflow.errorMessage ?: 'None')
email_fields['errorReport'] = (workflow.errorReport ?: 'None')
email_fields['commandLine'] = workflow.commandLine
email_fields['projectDir'] = workflow.projectDir
email_fields['launchDir'] = workflow.launchDir
// Complete the email template:
def engine = new groovy.text.GStringTemplateEngine()
def html_path = "${workflow.projectDir}/assets/email_template.html"
def html_file = new File(html_path)
def html_template = engine.createTemplate(html_file).make(email_fields)
def email_html = html_template.toString()
return [subject, email_html]
}
}