cr-connect-workflow/crc/services/mails.py

121 lines
4.6 KiB
Python
Raw Normal View History

2020-06-04 06:35:59 +00:00
import os
from flask import render_template, render_template_string
2020-06-05 02:37:28 +00:00
from flask_mail import Message
2020-06-04 06:35:59 +00:00
2020-06-10 04:57:56 +00:00
from crc.services.email_service import EmailService
2020-06-04 06:35:59 +00:00
# TODO: Extract common mailing code into its own function
def send_test_email(sender, recipients):
try:
msg = Message('Research Ramp-up Plan test',
sender=sender,
2020-06-10 04:57:56 +00:00
recipients=recipients,
bcc=['rrt_emails@googlegroups.com'])
from crc import env, mail
template = env.get_template('ramp_up_approval_request_first_review.txt')
template_vars = {'primary_investigator': "test"}
msg.body = template.render(template_vars)
template = env.get_template('ramp_up_approval_request_first_review.html')
msg.html = template.render(template_vars)
mail.send(msg)
except Exception as e:
return str(e)
2020-06-17 23:00:16 +00:00
def send_mail(subject, sender, recipients, content, content_html, study_id=None):
2020-06-12 18:17:08 +00:00
from crc import mail
2020-06-05 02:37:28 +00:00
try:
2020-06-10 04:57:56 +00:00
msg = Message(subject,
2020-06-05 02:37:28 +00:00
sender=sender,
2020-06-08 17:17:17 +00:00
recipients=recipients,
bcc=['rrt_emails@googlegroups.com'])
2020-06-05 02:37:28 +00:00
2020-06-12 18:17:08 +00:00
msg.body = content
msg.html = content_html
2020-06-10 04:57:56 +00:00
2020-06-17 23:00:16 +00:00
EmailService.add_email(subject=subject, sender=sender, recipients=recipients,
content=content, content_html=content_html, study_id=study_id)
2020-06-05 02:37:28 +00:00
mail.send(msg)
except Exception as e:
return str(e)
2020-06-04 06:35:59 +00:00
2020-06-25 04:23:31 +00:00
def send_ramp_up_submission_email(sender, recipients, approver_1, approver_2=None):
2020-06-12 18:17:08 +00:00
from crc import env
subject = 'Research Ramp-up Plan Submitted'
template = env.get_template('ramp_up_submission.txt')
template_vars = {'approver_1': approver_1, 'approver_2': approver_2}
content = template.render(template_vars)
template = env.get_template('ramp_up_submission.html')
content_html = template.render(template_vars)
result = send_mail(subject, sender, recipients, content, content_html)
return result
2020-06-25 04:23:31 +00:00
def send_ramp_up_approval_request_email(sender, recipients, primary_investigator):
2020-06-12 18:17:08 +00:00
from crc import env
subject = 'Research Ramp-up Plan Approval Request'
2020-06-05 02:37:28 +00:00
2020-06-12 18:17:08 +00:00
template = env.get_template('ramp_up_approval_request.txt')
template_vars = {'primary_investigator': primary_investigator}
content = template.render(template_vars)
template = env.get_template('ramp_up_approval_request.html')
content_html = template.render(template_vars)
2020-06-10 04:57:56 +00:00
2020-06-12 18:17:08 +00:00
result = send_mail(subject, sender, recipients, content, content_html)
return result
2020-06-05 02:37:28 +00:00
2020-06-25 04:23:31 +00:00
def send_ramp_up_approval_request_first_review_email(sender, recipients, primary_investigator):
2020-06-12 18:17:08 +00:00
from crc import env
subject = 'Research Ramp-up Plan Approval Request'
2020-06-05 02:37:28 +00:00
2020-06-12 18:17:08 +00:00
template = env.get_template('ramp_up_approval_request_first_review.txt')
template_vars = {'primary_investigator': primary_investigator}
content = template.render(template_vars)
template = env.get_template('ramp_up_approval_request_first_review.html')
content_html = template.render(template_vars)
2020-06-10 04:57:56 +00:00
2020-06-12 18:17:08 +00:00
result = send_mail(subject, sender, recipients, content, content_html)
return result
2020-06-04 06:35:59 +00:00
2020-06-25 04:23:31 +00:00
def send_ramp_up_approved_email(sender, recipients, approver_1, approver_2=None):
2020-06-12 18:17:08 +00:00
from crc import env
subject = 'Research Ramp-up Plan Approved'
2020-06-05 02:37:28 +00:00
2020-06-12 18:17:08 +00:00
template = env.get_template('ramp_up_approved.txt')
template_vars = {'approver_1': approver_1, 'approver_2': approver_2}
content = template.render(template_vars)
template = env.get_template('ramp_up_approved.html')
content_html = template.render(template_vars)
2020-06-05 02:37:28 +00:00
2020-06-12 18:17:08 +00:00
result = send_mail(subject, sender, recipients, content, content_html)
return result
2020-06-04 06:35:59 +00:00
2020-06-25 04:23:31 +00:00
def send_ramp_up_denied_email(sender, recipients, approver):
2020-06-12 18:17:08 +00:00
from crc import env
subject = 'Research Ramp-up Plan Denied'
2020-06-05 02:37:28 +00:00
2020-06-12 18:17:08 +00:00
template = env.get_template('ramp_up_denied.txt')
template_vars = {'approver': approver}
content = template.render(template_vars)
template = env.get_template('ramp_up_denied.html')
content_html = template.render(template_vars)
2020-06-05 02:37:28 +00:00
2020-06-12 18:17:08 +00:00
result = send_mail(subject, sender, recipients, content, content_html)
return result
2020-06-05 18:08:31 +00:00
2020-06-25 04:23:31 +00:00
def send_ramp_up_denied_email_to_approver(sender, recipients, primary_investigator, approver_2):
2020-06-12 18:17:08 +00:00
from crc import env
subject = 'Research Ramp-up Plan Denied'
2020-06-05 18:08:31 +00:00
2020-06-12 18:17:08 +00:00
template = env.get_template('ramp_up_denied_first_approver.txt')
template_vars = {'primary_investigator': primary_investigator, 'approver_2': approver_2}
content = template.render(template_vars)
template = env.get_template('ramp_up_denied_first_approver.html')
content_html = template.render(template_vars)
2020-06-05 18:08:31 +00:00
2020-06-12 18:17:08 +00:00
result = send_mail(subject, sender, recipients, content, content_html)
return result