https://github.com/jonathanspereira/smtp_email_python
Example of SMTP protocol for sending by email
https://github.com/jonathanspereira/smtp_email_python
python smtp-mail smtp-protocol smtplib
Last synced: 7 months ago
JSON representation
Example of SMTP protocol for sending by email
- Host: GitHub
- URL: https://github.com/jonathanspereira/smtp_email_python
- Owner: jonathanspereira
- License: mit
- Created: 2023-11-02T18:03:04.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-18T17:40:00.000Z (almost 2 years ago)
- Last Synced: 2025-01-21T17:49:38.557Z (9 months ago)
- Topics: python, smtp-mail, smtp-protocol, smtplib
- Language: Jupyter Notebook
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sending Email with Python
## Project:
Sending an email with the price of some shares. The email must contain information from the last six months:
- Minimum share price;
- Maximum share price;
- Quote of the day.
- How it will be carried out:
- Install and use libraries;
- Automatically fetch stock data;
- generate some statistics with this data;
- Use multiline strings;
- Send emails automatically using the SMTP protocol.
## Settings:To use replace the credentials passed as variables at the top:
- email_user = 'your_email'
- email_password = 'your_password'The following data is requested through inputs: the ticker of the action, desired period and the email address for the recipient.