-
Notifications
You must be signed in to change notification settings - Fork 193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use AWS Lambda for sending email on workflow.onComplete
#383
Comments
Should address this centrally in the template 👍 |
What about Also, note that we have been intending to strip all of this out for ages now, as it is a central Nextflow feature. So it should probably be added into core Nextflow 😓 |
cf #112 |
workflow.onComplete
The Nextflow docs for config scope mail {
smtp.host = 'email-smtp.us-east-1.amazonaws.com'
smtp.port = 587
smtp.user = '<Your AWS SES access key>'
smtp.password = '<Your AWS SES secret key>'
smtp.auth = true
smtp.starttls.enable = true
smtp.starttls.required = true
} Given that we want to rewrite to use the built-in Nextflow support (issue #112) I don't think that we need to have any AWS-specific code in the template. So I think we can close this issue as it's already covered by #112 basically. Shout if anyone disagrees and we can reopen :) |
Capturing while I remember ...
For cloud infrastructure,
sendmail
is not necessarily available as in the template so allowing the AWS batch pipeline to submit the lambda function to send an email.The text was updated successfully, but these errors were encountered: