added the section to get messages

master
kirbylife 2019-10-03 12:52:40 -05:00
parent f54f5e11c7
commit 5aa1017873
1 changed files with 34 additions and 0 deletions

View File

@ -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