-
Notifications
You must be signed in to change notification settings - Fork 32
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 when marked absent from house meeting #285
base: develop
Are you sure you want to change the base?
Conversation
Also sends an email when evals updates an active members house meeting attendance.
import smtplib | ||
from email.mime.text import MIMEText | ||
from email.utils import formatdate | ||
from email.mime.multipart import MIMEMultipart | ||
from datetime import date | ||
from conditional import app |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please organise these like in the rest of conditional:
- python modules
- pip modules
- local conditional modules
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is already the case
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Separate with a line break please
from conditional import app | ||
|
||
def send_absent_hm_attendance_emails(absent_members): | ||
today_date = date.today().strftime("%m/%d") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is an ambiguous date format. Why not do 06 January
instead? This doesn't need to be terse, so be readable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was done to be consistent with the emails sent out by quotefault. And at least in the subject line conciseness is better imo.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Quotefault does not include a date in emails. Please don't be terse in the body, at least.
Co-authored-by: Max Meinhold <[email protected]>
Co-authored-by: Max Meinhold <[email protected]>
Will squash into a single commit once approved. |
I did not know that, yikes |
Also sends an email when evals updates an active members house meeting


attendance.