summaryrefslogtreecommitdiff
path: root/fossee_manim
diff options
context:
space:
mode:
authorSharanya A2019-07-31 11:29:35 +0530
committerSharanya A2019-07-31 11:29:35 +0530
commit4a14541f8bfb682f9726b62d9d2b457803fc9a10 (patch)
tree72cd91caef3b1b586d3111d06f6478206945a612 /fossee_manim
parent140b189fb53a68c182082b4812838c02e1633dda (diff)
downloadFOSSEE_animations-4a14541f8bfb682f9726b62d9d2b457803fc9a10.tar.gz
FOSSEE_animations-4a14541f8bfb682f9726b62d9d2b457803fc9a10.tar.bz2
FOSSEE_animations-4a14541f8bfb682f9726b62d9d2b457803fc9a10.zip
Made changes to mail subject text
Diffstat (limited to 'fossee_manim')
-rw-r--r--fossee_manim/send_mails.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/fossee_manim/send_mails.py b/fossee_manim/send_mails.py
index 15b2e87..363a0ec 100644
--- a/fossee_manim/send_mails.py
+++ b/fossee_manim/send_mails.py
@@ -117,7 +117,7 @@ def send_email(request, call_on, contributor=None, key=None, proposal=None):
logging.info("FOSSEE Animations | Proposal Outcome: %s", request.user.email)
send_mail(
- "FOSSEE Animation Status Update", message, SENDER_EMAIL,
+ "FOSSEE Animations Status Update", message, SENDER_EMAIL,
[contributor.profile.user.email], fail_silently=True
)
elif call_on == 'changes':
@@ -136,7 +136,7 @@ def send_email(request, call_on, contributor=None, key=None, proposal=None):
logging.info("Comment by Reviewer: %s", request.user.email)
send_mail(
- "FOSSEE Animation Comment by Reviewer", message, SENDER_EMAIL,
+ "FOSSEE Animations Comment by Reviewer", message, SENDER_EMAIL,
[contributor.profile.user.email], fail_silently=True)
elif call_on == 'proposal_form':
message = dedent("""\
@@ -152,7 +152,7 @@ def send_email(request, call_on, contributor=None, key=None, proposal=None):
FOSSEE Animations Team""".format(contributor.profile.user.username))
logging.info("Animation Proposal Form 2: %s", request.user.email)
- subject = "FOSSEE Animation Proposal Form 2"
+ subject = "FOSSEE Animations Proposal Form 2"
msg = EmailMultiAlternatives(subject, message, SENDER_EMAIL,
[contributor.profile.user.email])
attachment_paths = path.join(settings.MEDIA_ROOT, "Proposal_Form")