@@ -27,18 +27,18 @@ How to use the module :
2727``` python
2828gmail_id = (' ' ) # sender g-mail id
2929
30- password = (' ' ) # sender g-mail password
30+ gmail_password = (' ' ) # sender g-mail password
3131```
32- ## Single Reciver mail id :
32+ ## Single destination mail id :
3333``` python
34- reciver_mail_id = [
34+ destination_addresses = [
35353636 ]
3737```
3838
39- ## Multiple Reciver mail id's :
39+ ## Multiple destination mail id's :
4040``` python
41- reciver_mail_id = [
41+ destination_addresses = [
424243434444@@ -52,9 +52,9 @@ reciver_mail_id = [
5252``` python
5353subject = (' ' ) # mail subject
5454```
55- ## mail contain :
55+ ## mail message :
5656``` python
57- mail_contain = (' ' ) # mail contain
57+ message = (' ' ) # mail message
5858```
5959## How to import the module :
6060``` python
@@ -66,27 +66,27 @@ mail = gmail()
6666```
6767## give sender login credential :
6868``` python
69- mail.login(gmail_id, password )
69+ mail.login(gmail_id, gmail_password )
7070```
7171## give reciver mail id or id's. :
7272``` python
73- mail.reciver_mail(reciver )
73+ mail.receiver_mail(destination_addresses )
7474```
7575## send mail :
7676``` python
77- mail.send_mail(subject, mail_contain )
77+ mail.send_mail(subject, message )
7878```
7979## Example :
8080``` python
8181from gmail.gmail import gmail
8282
8383mail = gmail()
8484
85- mail.login(gmail_id, password )
85+ mail.login(gmail_id, gmail_password )
8686
87- mail.reciver_mail(reciver )
87+ mail.receiver_mail(destination_addresses )
8888
89- mail.send_mail(subject, mail_contain )
89+ mail.send_mail(subject, message )
9090```
9191
9292## License :
0 commit comments