-
Notifications
You must be signed in to change notification settings - Fork 3
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
Separate email file and user + password prompt #5
base: master
Are you sure you want to change the base?
Conversation
The comments on mail.py should be edited to be consistent with the changes that have been made to the file. |
Oh you're right. Sorry about that! I'll fix that right away. |
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.
Sorry, this took me a while to get to - been quite busy.
.DS_Store
files and other cruft should never be committed! Add it to your global Git ignore file.- See other comments for notes.
mail.py
Outdated
EMAIL_ADDRESS = input("Please type your email address username: ") | ||
PASSWORD = input("Please type your email password: ") | ||
|
||
EMAIL_DATA_FILEPATH = 'Email_Text_Files/email_data.txt' |
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.
File paths should be consistently named; camelCase
or kebab-case
is probably preferable.
The subject, english email, and japanese email in the email_data.txt file are broken up by the "*" character
use input() for username and password input