@@ -153,7 +153,7 @@ Returns a list of emails from the server that are currently visible in the inbox
153153 "labels" : [" ^all" , " ^i" , " ^smartlabel_social" , " ^unsub" ]}]
154154```
155155
156- #### gmail.get ** .email_data()**
156+ #### gmail.get.email_data()
157157
158158Returns an object representation of the opened email contents and metadata
159159
@@ -183,15 +183,15 @@ Returns an object representation of the opened email contents and metadata
183183}
184184```
185185
186- #### gmail.get ** .user_email()**
186+ #### gmail.get.user_email()
187187
188188Returns the current user's email address
189189
190190``` js
191191" california@gmail.com"
192192```
193193
194- #### gmail.get ** .storage_info()**
194+ #### gmail.get.storage_info()
195195
196196Returns current user's file storage stats
197197
@@ -203,7 +203,7 @@ Returns current user's file storage stats
203203}
204204```
205205
206- #### gmail.get ** .current_page()**
206+ #### gmail.get.current_page()
207207
208208Returns what page of gmail the user is currently on. These are the possible responses
209209
@@ -215,7 +215,7 @@ null // inside email conversation
215215" /category/[.+]" // inside category view
216216```
217217
218- #### gmail.get ** .email_subject()**
218+ #### gmail.get.email_subject()
219219
220220Returns the opened email's subject from the DOM
221221
@@ -224,23 +224,23 @@ Returns the opened email's subject from the DOM
224224```
225225
226226
227- #### gmail.get ** .email_id()**
227+ #### gmail.get.email_id()
228228
229229Gets current email's ID
230230
231231``` js
232232" 141de25dc0b48e4f"
233233```
234234
235- #### gmail.get ** .search_query()**
235+ #### gmail.get.search_query()
236236
237237Returns the search bar data
238238
239239``` js
240240" from:hi@kartikt.com is:unread"
241241```
242242
243- #### gmail.get ** .unread_emails()**
243+ #### gmail.get.unread_emails()
244244
245245Returns a count of total unread emails for the current account.
246246
@@ -267,7 +267,7 @@ You can also request the data individually
267267- ** gmail.get.unread_social_emails()**
268268
269269
270- #### gmail.get ** .last_active()**
270+ #### gmail.get.last_active()
271271
272272Gets user's account activity data
273273
@@ -280,15 +280,15 @@ Gets user's account activity data
280280}
281281```
282282
283- #### gmail.get ** .loggedin_accounts()**
283+ #### gmail.get.loggedin_accounts()
284284
285285Returns a list of signed-in accounts (multiple user accounts setup in gmail)
286286
287287``` json
288288[{"name" :" California" ,"email" :" california@gmail.com" }]
289289```
290290
291- #### gmail.get ** .beta()**
291+ #### gmail.get.beta()
292292
293293Although hand picked, this method returns the checks on beta features and deployments
294294
0 commit comments