File tree Expand file tree Collapse file tree 5 files changed +17
-7
lines changed Expand file tree Collapse file tree 5 files changed +17
-7
lines changed Original file line number Diff line number Diff line change @@ -113,10 +113,17 @@ services:
113
113
5. Push your fix to your branch.
114
114
6. Create a pull request, detailing your fixes.
115
115
116
+ # Other Ways to Contribute
117
+
118
+ - Donate money to the projecct <https://ko-fi.com/summary/c05d8728-c615-45f7-9f5d-5fe3b57895c9>.
119
+ Donors will be listed in the README. Minumum donation $1, **SUGGESTED : $10 OR MORE**
120
+ - [Hire me!](https://damngood.tech) I'm a senior developer with over 10 years experience.
121
+ Currently open to clients tackling the impossible!
122
+
116
123
# Customizations
117
124
118
125
If you'd like customizations for your organization, I'd love to help you out.
119
- Please pick a time to chat at https://damngood.tech/schedule/60min/.
126
+ Please pick a time to chat at < https://damngood.tech/schedule/60min/> .
120
127
121
128
# Testing
122
129
Original file line number Diff line number Diff line change @@ -57,10 +57,11 @@ def get_format_kwargs(self):
57
57
"organizer_cn" : cfg .organizer_cn ,
58
58
"organizer_email" : cfg .organizer_email ,
59
59
"organizer_role" : cfg .organizer_role ,
60
- "organizer_timezone" : cfg .my_timezone ,
60
+ "organizer_timezone" : str ( cfg .my_timezone ) ,
61
61
"participant_timezone" : str (self .start .tzinfo ),
62
62
"participant_cn" : self .participant_name ,
63
63
"participant_email" : self .participant_email ,
64
+ "from_email" : cfg .email_from ,
64
65
"human_start" : self .start .format (cfg .ics_dt_format_start ),
65
66
"raw_start" : self .start ,
66
67
"dtstart" : self .start .to ("UTC" ).format (ARROW_ICS_FORMAT ),
@@ -195,7 +196,7 @@ def get_email_content_template(self):
195
196
return TPL_EML_PARTICIPANT
196
197
197
198
def get_email_to (self ):
198
- return cfg . organizer_email
199
+ return self . participant_email
199
200
200
201
def get_subject_template (self ):
201
- return cfg .email_organizer_subject
202
+ return cfg .email_participant_subject
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Timezone: {{ organizer_timezone }}
6
6
7
7
The meeting is at the following URL:
8
8
9
- {{ meeting_link }}
9
+ {{ meeting_link }}
10
10
11
11
{% if notes %}
12
12
---
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Timezone: {{ participant_timezone }}
6
6
7
7
The meeting is at the following URL:
8
8
9
- {{ meeting_link }}
9
+ {{ meeting_link }}
10
10
11
11
---
12
12
Original file line number Diff line number Diff line change @@ -7,8 +7,10 @@ <h1 class="title">An invitation is on its way!</h1>
7
7
{% block main %}
8
8
< div class ="container ">
9
9
< div class ="alert alert-success ">
10
- < p > An email has been sent to < strong > {{ request.form.email }}</ strong > from < strong > {{ cfg.organizer_email }}</ strong > .</ p >
10
+ < p > An email has been sent to < strong > {{ request.form.email }}</ strong > from < strong > {{ cfg.email_from }}</ strong > .</ p >
11
11
< p > Please check the spam folder if you don't receive it within the next few minutes.</ p >
12
+ < p > If it's not in the spam folder, please send an email to < strong > {{ cfg.organizer_email }}</ strong > to verify the meeting.</ p >
13
+ < p > The fine print: Ink-In Time is still in beta so you may encounter issues</ p >
12
14
</ div >
13
15
</ div >
14
16
You can’t perform that action at this time.
0 commit comments