-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmailing_templates.py
75 lines (57 loc) · 1.82 KB
/
mailing_templates.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
"""
Subjects and bodies for mails to CC and applicant after successful application.
"""
from string import Template
APPLICANT_CONFIRMATION_SUBJECT = Template(
"""
Clubs Council - Application Confirmation
"""
)
APPLICANT_CONFIRMATION_BODY = Template(
"""
Dear Applicant,
Thank you for applying to the Clubs Council. We have received your
application and will get back to you shortly.
Best regards,
Clubs Council.
Note: This automated email has been generated from the Clubs Council website.
For more details, visit clubs.iiit.ac.in.
""" # noqa: E501
)
CC_APPLICANT_CONFIRMATION_SUBJECT = Template(
"""
Clubs Council - CC Application Confirmation
"""
)
CC_APPLICANT_CONFIRMATION_BODY = Template(
"""
Dear Clubs Council,
A new application has been received for CC. The details are as follows:
1. User ID: $uid
2. Email: $email
3. Which all teams would you like to apply for in Clubs Council?
$teams
4. Why did you choose the team(s) you have chosen?
$why_this_position
5. Why do you want to be a part of the Clubs Council? Tell us about your
vision and improvements you wish to make.
$why_cc
6. Why do you believe you are a good fit for the position you are applying
to?
$good_fit
7. Tell us more about your ideas and thoughts about the club activities
on campus and how can the campus life (wrt. club activities) at IIIT
Hyderabad can be improved.
$ideas
8. Have you been a part of any student-run bodies or clubs in our campus?
If yes, tell us about your experience.
$other_bodies
9. Design Experience
$design_experience
Best regards,
Tech Team
Clubs Council.
Note: This automated email has been generated from the Clubs Council website.
For more details, visit clubs.iiit.ac.in.
""" # noqa: E501
)