def send_password_reset_email(subject, from_email, to_list, html_message): email_helper = EmailHelper(subject=subject, from_email=from_email, to_list=to_list, html_message=html_message) email_helper.send_sendgrid_html_version()
def send_fundraiser_receipt_email(subject, message, from_email, to_list, type=None, html_message=None): email_helper = EmailHelper( subject=subject, message=message, from_email=from_email, to_list=to_list, type=type, html_message=html_message ) email_helper.send_sendgrid()