-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
62 lines (54 loc) · 2.17 KB
/
config.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
################################################################################
# SMTP configuration settings.
################################################################################
smtp = {
'username': 'username',
'password': 'password',
'host': 'email-smtp.example.com',
'port': 587,
'from_email': '[email protected]',
}
################################################################################
# This the secret santa letter template that is used to send everyone the email.
# Note that {santa} and {recipient} are automatically replaced by the secret
# santa's name, and his/her recipient of their gift.
################################################################################
email_template = {
'from_name': 'Secret Santa',
'from_email': smtp['from_email'],
'subject': 'Family Christmas',
'body': """
Ho Ho Ho!
{santa}, you are {recipient}'s secret Santa!
Merry Christmas!
"""
}
################################################################################
# The complete list of all the secret santa's and their email addresses.
################################################################################
santas = {
'James': '[email protected]',
'Mary': '[email protected]',
'Nancy': '[email protected]',
'John': '[email protected]',
'Michael': '[email protected]',
'Lisa': '[email protected]',
'David': '[email protected]',
'Linda': '[email protected]',
}
################################################################################
# This contains a dictionary lookup of santa's (keys) who are not allowed to
# have particular recipients (values).
#
# If there are no incompatibles, leave this dictionary empty.
################################################################################
incompatibles = {
'James': ('Mary',),
}
################################################################################
# DON'T ENTER INTO THIS FILE!
#
# This file will contain a record of what was emailed. It will reveal who is
# everyone's secret santa.
################################################################################
secret_santa_record_file = 'dont-open-me.txt'