Gmail Size Finds the G mail Size Search Operator For All Emails With Large Attachments
Using Undocumented "size" Operator Search G mail messages by Size
We know that most of the G mail messages are occupying more space in our G mail mailbox? But there are some Google Scripts and external Web apps that will discovers all the space-hogging email attachments but we do not have need with them.
To quickly find all the big emails in mailbox whose size is too long the G mail supports an undocumented “size” search operator. The syntax is:
size : [size in bytes]
Let us take the real time example like a gmail search query size:5242880 it will list all mails whose size is 5 MB or more than 5 MB if size:10485760 it will list all messages bigger than 10 MB.
We can mention the size in MB as it makes easier.For example if size:5 MB it will find all mails that are 5 MB or more than 5 MB size.
Instead of using size we can also use the operators like "larger","Larger_than", and also "smaller", "smaller_than" to fond the files of particular size. The combination of this oparators are also possible.For example, the following Gmail search query will find all mails with sizes between 5 MB and 8 MB.The syntax is:
larger_than : 5M smaller_than : 8M
If once we spotted the large mail attachments that are taking more space apply the #googleDrive label to save directly to attachments to Google Drive before deleting from mailbox.
Using Undocumented "size" Operator Search G mail messages by Size
We know that most of the G mail messages are occupying more space in our G mail mailbox? But there are some Google Scripts and external Web apps that will discovers all the space-hogging email attachments but we do not have need with them.
To quickly find all the big emails in mailbox whose size is too long the G mail supports an undocumented “size” search operator. The syntax is:
size : [size in bytes]
Let us take the real time example like a gmail search query size:5242880 it will list all mails whose size is 5 MB or more than 5 MB if size:10485760 it will list all messages bigger than 10 MB.
We can mention the size in MB as it makes easier.For example if size:5 MB it will find all mails that are 5 MB or more than 5 MB size.
Instead of using size we can also use the operators like "larger","Larger_than", and also "smaller", "smaller_than" to fond the files of particular size. The combination of this oparators are also possible.For example, the following Gmail search query will find all mails with sizes between 5 MB and 8 MB.The syntax is:
larger_than : 5M smaller_than : 8M
If once we spotted the large mail attachments that are taking more space apply the #googleDrive label to save directly to attachments to Google Drive before deleting from mailbox.
Post a Comment