added the section to get messages
parent
f54f5e11c7
commit
5aa1017873
34
README.md
34
README.md
|
@ -33,5 +33,39 @@ Out[4]: True
|
|||
In [5]: email.reset_time()
|
||||
```
|
||||
|
||||
**Get the messages recieved**
|
||||
```
|
||||
In [6]: messages = email.get_messages()
|
||||
In [7]: type(messages)
|
||||
Out[7]: list
|
||||
In [8]: messages
|
||||
Out[8]:
|
||||
[{'subject': 'Subject example',
|
||||
'attachments': [],
|
||||
'formattedDate': 'Oct 3, 2019 12:46:18 PM',
|
||||
'bodyPreview': "Hello, I'm the body of the e-mail.",
|
||||
'attachmentCount': 0,
|
||||
'repliedTo': False,
|
||||
'bodyPlainText': "Hello, I'm the body of the e-mail.",
|
||||
'primaryFromAddress': 'kirbylife@protonmail.com',
|
||||
'read': False,
|
||||
'forwarded': False,
|
||||
'bodyText': "<div>Hello, I'm the body of the e-mail.<br></div>",
|
||||
'fromList': ['kirbylife@protonmail.com'],
|
||||
'recipientList': ['b3763093@urhen.com'],
|
||||
'sentDate': 1570124778000,
|
||||
'expanded': False,
|
||||
'id': '18326103452296378'}]
|
||||
```
|
||||
|
||||
**Get the total number of messages**
|
||||
```
|
||||
In [9]: email.total_messages
|
||||
Out[9]: 1
|
||||
In [10]: # Another way
|
||||
In [11]: len(email.messages)
|
||||
Out[11]: 1
|
||||
```
|
||||
|
||||
### TO-DO
|
||||
- [x] Access to the e-mails received
|
||||
|
|
Loading…
Reference in New Issue