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

32 lines
975 B
Python
Raw Normal View History

2020-06-10 04:57:56 +00:00
from datetime import datetime
from sqlalchemy import desc
from crc import app, db, session
from crc.api.common import ApiError
2020-06-17 23:00:16 +00:00
from crc.models.study import StudyModel
2020-06-10 04:57:56 +00:00
from crc.models.email import EmailModel
class EmailService(object):
"""Provides common tools for working with an Email"""
@staticmethod
2020-06-17 23:00:16 +00:00
def add_email(subject, sender, recipients, content, content_html, study_id):
2020-06-10 04:57:56 +00:00
"""We will receive all data related to an email and store it"""
2020-06-17 23:00:16 +00:00
# Find corresponding study - if any
study = None
if type(study_id) == int:
study = db.session.query(StudyModel).get(study_id)
2020-06-10 04:57:56 +00:00
# Create EmailModel
email_model = EmailModel(subject=subject, sender=sender, recipients=str(recipients),
2020-06-17 23:00:16 +00:00
content=content, content_html=content_html, study=study)
# TODO: Send email from here, not from caller functions
2020-06-10 04:57:56 +00:00
db.session.add(email_model)
db.session.commit()