Welcome to Email Keyword Notifier’s documentation!¶
Overview¶
This idea came from the challenge of having to sort through many emails every day to find the important ones. Gmail already has a labeling function that classifies emails based on specific email addresses as filters. This project aims to create a function that sends notifications based on keywords using slack and smartphones. There is also potential to expand this project to find information in other ways besides just keywords.
Installing¶
pip install project_progress
Dependencies¶
slack_sdk
Usage¶
from project_progress import read_email_titles, sendSlackWebhook
email_titles = read_email_titles()
keyword = "important"
for title in email_titles:
if keyword in title:
sendSlackWebhook("Keyword found in email title: " + title, webhook_url)
For more detailed usage instructions and available options, please refer to the ‘Examples’ section, either below or in the left navigation menu.
Contents: