https://github.com/rootpye/autogmail
automatic gmail send program
https://github.com/rootpye/autogmail
automation email gmail-smtp python
Last synced: 2 months ago
JSON representation
automatic gmail send program
- Host: GitHub
- URL: https://github.com/rootpye/autogmail
- Owner: Rootpye
- License: apache-2.0
- Created: 2025-02-20T02:43:58.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-02-20T13:07:22.000Z (8 months ago)
- Last Synced: 2025-02-20T14:23:06.052Z (8 months ago)
- Topics: automation, email, gmail-smtp, python
- Language: Python
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# autoGmail
automatic email send program working on terminal# requirements
- app password
- gmail# Quick Start
1. install autoGmail.py2. fix Username and Password to your google account and your 'app password'
```python
SMTP_Username = 'your_email@gmail.com'
SMTP_Password = 'abcd efgh ijkl mnop'
```3. fix receiver@gmail.com to receivers gmail
```python
send_email("Test", "This is a test email.", "receiver@gmail.com
")
```- You must follow this style to send email
```
send_email("Title", "Body", "receiver's gmail")
```