Skip to content

Commit a0fa317

Browse files
authored
update README.md
1 parent a2e5d79 commit a0fa317

File tree

1 file changed

+12
-39
lines changed

1 file changed

+12
-39
lines changed

README.md

Lines changed: 12 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
1-
## python-gmail :
21
[![Build Status](https://travis-ci.org/sujitmandal/python-gmail.svg?branch=master)](https://travis-ci.org/sujitmandal/python-gmail) [![GitHub license](https://img.shields.io/github/license/sujitmandal/python-gmail)](https://github.com/sujitmandal/python-gmail/blob/master/LICENSE) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/python-gmail) ![PyPI - Wheel](https://img.shields.io/pypi/wheel/python-gmail) ![PyPI](https://img.shields.io/pypi/v/python-gmail)
32

43

54
[![Downloads](https://pepy.tech/badge/python-gmail)](https://pepy.tech/project/python-gmail)
65

7-
Automatically Send Gmail with SMTP Server.
8-
96
## Package Installation :
107
```
118
pip install python-gmail
129
```
13-
[Package Link](https://pypi.org/project/python-gmail/)
1410
## python-gmail :
1511
Inorder to send mail form gmail using SMTP Server, first you need to enable "Two-Step Verification" on the sender mail id.
1612

@@ -28,20 +24,20 @@ How to use the module :
2824
----------------------
2925

3026
## E-mail login credential :
31-
```
27+
```python
3228
gmail_id = ('') #sender g-mail id
3329

3430
password = ('') #sender g-mail password
3531
```
3632
## Single Reciver mail id :
37-
```
33+
```python
3834
reciver_mail_id = [
3935
4036
]
4137
```
4238

4339
## Multiple Reciver mail id's :
44-
```
40+
```python
4541
reciver_mail_id = [
4642
4743
@@ -53,35 +49,35 @@ reciver_mail_id = [
5349
```
5450

5551
## main subject :
56-
```
52+
```python
5753
subject = ('') #mail subject
5854
```
5955
## mail contain :
60-
```
56+
```python
6157
mail_contain = ('') #mail contain
6258
```
6359
## How to import the module :
64-
```
60+
```python
6561
from gmail.gmail import gmail
6662
```
6763
## create mail object :
68-
```
64+
```python
6965
mail = gmail()
7066
```
7167
## give sender login credential :
72-
```
68+
```python
7369
mail.login(gmail_id, password)
7470
```
7571
## give reciver mail id or id's. :
76-
```
72+
```python
7773
mail.reciver_mail(reciver)
7874
```
7975
## send mail :
80-
```
76+
```python
8177
mail.send_mail(subject, mail_contain)
8278
```
8379
## Example :
84-
```
80+
```python
8581
from gmail.gmail import gmail
8682

8783
mail = gmail()
@@ -93,29 +89,6 @@ mail.reciver_mail(reciver)
9389
mail.send_mail(subject, mail_contain)
9490
```
9591

96-
## Requirement’s:
97-
```
98-
• Python
99-
100-
• Anaconda
101-
102-
• Visual Studio Code
103-
```
104-
## LINK’S:
105-
[Python Download](https://www.python.org/downloads/)
106-
107-
[Anaconda Download](https://www.anaconda.com/downloads)
108-
109-
[Visual Studio Download](https://code.visualstudio.com/Download)
110-
111-
## Linux:
112-
How to install Anaconda In Linux | Create Environment | Install TensorFlow | Opencv library |
113-
[![How to install | Python | | Anaconda | | Opencv library |](https://yt-embed.herokuapp.com/embed?v=Mfbrxy8gK6A)](https://www.youtube.com/watch?v=Mfbrxy8gK6A "How to install Anaconda In Linux | Create Environment | Install TensorFlow | Opencv library |")
114-
115-
## Windows:
116-
How to install | Python | | Anaconda | | Opencv library |
117-
[![How to install | Python | | Anaconda | | Opencv library |](https://yt-embed.herokuapp.com/embed?v=eVV3byQlYvA)](https://www.youtube.com/watch?v=eVV3byQlYvA "How to install | Python | | Anaconda | | Opencv library |")
118-
11992
## License :
12093
MIT Licensed
12194

@@ -126,4 +99,4 @@ Sujit Mandal
12699

127100
[PyPi](https://pypi.org/user/sujitmandal/)
128101

129-
[LinkedIn](https://www.linkedin.com/in/sujit-mandal-91215013a/)
102+
[LinkedIn](https://www.linkedin.com/in/sujit-mandal-91215013a/)

0 commit comments

Comments
 (0)