Skip to content
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

Send Email on Volunteer Application Status #70

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions templates/volunteer/base_email.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{% load i18n %}{% autoescape off %}{% blocktrans with site_name=site_name %}Hello from {{ site_name }}!{% endblocktrans %}

{% block content %}{% endblock content %}

{% endautoescape %}
5 changes: 5 additions & 0 deletions templates/volunteer/email/base_message.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{% load i18n %}{% autoescape off %}{% blocktrans with site_name=site_name %}Hello from {{ site_name }}!{% endblocktrans %}

{% block content %}{% endblock content %}

{% endautoescape %}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{% extends "volunteer/email/base_message.txt" %}
{% load i18n %}

{% block content %}
Your current volunteer application status: {{ status }}.
{% endblock content %}
6 changes: 6 additions & 0 deletions templates/volunteer/email_application_status.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{% extends "volunteer/base_email.html" %}
{% load i18n %}

{% block content %}
Your current volunteer application status: <strong>{{ status }}</strong>.
{% endblock content %}
28 changes: 27 additions & 1 deletion volunteer/models.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
from django.db import models
from django.core.mail import EmailMultiAlternatives
from django.template.loader import render_to_string
from django.db import models, transaction
from django.conf.global_settings import LANGUAGES
from django.contrib.auth.models import User

from portal.models import BaseModel, ChoiceArrayField
from portal.settings import ACCOUNT_EMAIL_SUBJECT_PREFIX, DEFAULT_FROM_EMAIL
from .constants import ApplicationStatus
from django.urls import reverse

Expand Down Expand Up @@ -100,3 +103,26 @@ def __str__(self):

def get_absolute_url(self):
return reverse("volunteer_profile_edit", kwargs={"pk": self.pk})

def save(self):
def send_volunteer_email():
text_content = render_to_string("volunteer/email/email_application_status_message.txt",
context={"status": self.application_status, "site_name": "PyLadiesCon"},
)
html_content = render_to_string("volunteer/email_application_status.html",
context={"status": self.application_status, "site_name": "PyLadiesCon"},
)

msg = EmailMultiAlternatives(
f"{ACCOUNT_EMAIL_SUBJECT_PREFIX} Volunteer Application Status",
text_content,
DEFAULT_FROM_EMAIL,
[self.user.email],
)
msg.attach_alternative(html_content, "text/html")
msg.send()

transaction.on_commit(send_volunteer_email)
return super().save()