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
|
|
|
|
|
|
|
|
|
|
|
# TODO: Extract common mailing code into its own function
|
|
|
|
|
|
|
|
def send_ramp_up_submission_email(sender, recipients, approver_1, approver_2=None):
|
2020-06-05 02:37:28 +00:00
|
|
|
try:
|
|
|
|
msg = Message('Research Ramp-up Plan Submitted',
|
|
|
|
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
|
|
|
|
|
|
|
from crc import env, mail
|
|
|
|
template = env.get_template('ramp_up_submission.txt')
|
|
|
|
template_vars = {'approver_1': approver_1, 'approver_2': approver_2}
|
|
|
|
msg.body = template.render(template_vars)
|
|
|
|
template = env.get_template('ramp_up_submission.html')
|
|
|
|
msg.html = template.render(template_vars)
|
|
|
|
|
|
|
|
mail.send(msg)
|
|
|
|
except Exception as e:
|
|
|
|
return str(e)
|
2020-06-04 06:35:59 +00:00
|
|
|
|
|
|
|
def send_ramp_up_approval_request_email(sender, recipients, primary_investigator):
|
2020-06-05 02:37:28 +00:00
|
|
|
try:
|
|
|
|
msg = Message('Research Ramp-up Plan Approval Request',
|
|
|
|
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
|
|
|
|
|
|
|
from crc import env, mail
|
|
|
|
template = env.get_template('ramp_up_approval_request.txt')
|
|
|
|
template_vars = {'primary_investigator': primary_investigator}
|
|
|
|
msg.body = template.render(template_vars)
|
|
|
|
template = env.get_template('ramp_up_approval_request.html')
|
|
|
|
msg.html = template.render(template_vars)
|
|
|
|
|
|
|
|
mail.send(msg)
|
|
|
|
except Exception as e:
|
|
|
|
return str(e)
|
|
|
|
|
|
|
|
def send_ramp_up_approval_request_first_review_email(sender, recipients, primary_investigator):
|
|
|
|
try:
|
|
|
|
msg = Message('Research Ramp-up Plan Approval Request',
|
|
|
|
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
|
|
|
|
|
|
|
from crc import env, mail
|
|
|
|
template = env.get_template('ramp_up_approval_request_first_review.txt')
|
|
|
|
template_vars = {'primary_investigator': primary_investigator}
|
|
|
|
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-04 06:35:59 +00:00
|
|
|
|
|
|
|
def send_ramp_up_approved_email(sender, recipients, approver_1, approver_2=None):
|
2020-06-05 02:37:28 +00:00
|
|
|
try:
|
|
|
|
msg = Message('Research Ramp-up Plan Approved',
|
|
|
|
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
|
|
|
|
|
|
|
from crc import env, mail
|
|
|
|
template = env.get_template('ramp_up_approved.txt')
|
|
|
|
template_vars = {'approver_1': approver_1, 'approver_2': approver_2}
|
|
|
|
msg.body = template.render(template_vars)
|
|
|
|
template = env.get_template('ramp_up_approved.html')
|
|
|
|
msg.html = template.render(template_vars)
|
|
|
|
|
|
|
|
mail.send(msg)
|
|
|
|
except Exception as e:
|
|
|
|
return str(e)
|
2020-06-04 06:35:59 +00:00
|
|
|
|
|
|
|
def send_ramp_up_denied_email(sender, recipients, approver):
|
2020-06-05 02:37:28 +00:00
|
|
|
try:
|
|
|
|
msg = Message('Research Ramp-up Plan Denied',
|
|
|
|
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
|
|
|
|
|
|
|
from crc import env, mail
|
|
|
|
template = env.get_template('ramp_up_denied.txt')
|
|
|
|
template_vars = {'approver': approver}
|
|
|
|
msg.body = template.render(template_vars)
|
|
|
|
template = env.get_template('ramp_up_denied.html')
|
|
|
|
msg.html = template.render(template_vars)
|
|
|
|
|
|
|
|
mail.send(msg)
|
|
|
|
except Exception as e:
|
|
|
|
return str(e)
|
2020-06-05 18:08:31 +00:00
|
|
|
|
|
|
|
def send_ramp_up_denied_email_to_approver(sender, recipients, primary_investigator, approver_2):
|
|
|
|
try:
|
|
|
|
msg = Message('Research Ramp-up Plan Denied',
|
|
|
|
sender=sender,
|
2020-06-08 17:17:17 +00:00
|
|
|
recipients=recipients,
|
|
|
|
bcc=['rrt_emails@googlegroups.com'])
|
2020-06-05 18:08:31 +00:00
|
|
|
|
|
|
|
from crc import env, mail
|
|
|
|
template = env.get_template('ramp_up_denied_first_approver.txt')
|
|
|
|
template_vars = {'primary_investigator': primary_investigator, 'approver_2': approver_2}
|
|
|
|
msg.body = template.render(template_vars)
|
|
|
|
template = env.get_template('ramp_up_denied_first_approver.html')
|
|
|
|
msg.html = template.render(template_vars)
|
|
|
|
|
|
|
|
mail.send(msg)
|
|
|
|
except Exception as e:
|
|
|
|
return str(e)
|