Showing posts with label Gmail Tips. Show all posts
Showing posts with label Gmail Tips. Show all posts

Wednesday, 4 June 2014

What is Gmail’s Daily Limit on Sending Email?

          Gmail has certain limits in place. For instance, the maximum size of file attachments that you can include in an email message is 25 MB while the total storage limit for a free Gmail account is 15 GB.
          Similarly, Google also limits the number of email messages that you can send through your Gmail account in a day. If you exceed the daily quota, Google may temporarily disable your Gmail account without any warnings and you may have to wait for up to 24 hours before you can regain access to your Gmail mailbox.
Gmail Sending Limits

Gmail Limits for Sending Email

Gmail isn’t designed for sending bulk email. If you are planning to send an email message to a large group of friends using Gmail, do read the following rules to avoid temporary lockdown of your Gmail:
Rule 1: You can send emails to a maximum of 500 recipients per day through the Gmail website. Try exceeding the limit and your Gmail account may get temporarily disabled with the error – “Gmail Lockdown in Section 4.”
It is important to note that this limit is around recipients and not messages. Thus you can send 10 emails to 50 people each or 1 email can be addressed to a maximum of 500 people.
Rule 2: If you access Gmail via POP or IMAP clients, like Microsoft Outlook or Apple Mail, you can send an email message to a maximum of 100 people at a time. If you exceed the limit, your account may be disabled for a day with the error – “550 5.4.5 Daily sending quota exceeded.”
Rule 3: Always double check email addresses of recipients before hitting the Send button in Gmail. That’s because your account may get disabled if the email message contains a large number of non-existent or broken addresses (<25 ?) that bounce back on failed delivery.
Rule 4: You can associate multiple email addresses with your Gmail account and send emails on behalf of any other address. However, when sending mail from a different address, the original account’s message limits are applied.

Rule 5: If you are sending emails through Google Script, like in the case of Gmail Mail Merge, the daily sending limit is 100 recipients per day for free Gmail accounts. You can use the MailApp.GetRemainingDailyQuota method to know your existing quota else the script will throw an exception saying – “Service invoked too many times.”
If you wish to send more email messages through Google Scripts, you’ll have to upgrade to Google Apps. Even then, your sending limits will be only be increased after a few billing cycles or if you have opted for 5 or more users.

This is slightly unrelated but still important. Google, as per their program policies, may disable your Gmail account permanently if you don’t check your Gmail email for a period of nine months.

Courtesy : www.loabnol.org

Read full story here

Wednesday, 21 May 2014

How to Create Advanced Gmail Filters?

     G-mail filters help you automatically sort email messages based on rules. So if your boss has sent an email message, the filter can mark it as important. If the email has the word “Unsubscribe” somewhere in the message body, it can be marked as a promotional message and so on.

        While the built-in Gmail filters are powerful, they do have certain limitations.

        For instance, you cannot have a Gmail filter that does case-sensitive search. It will treat WHO and who as same. Gmail filters won’t do pattern matching (regular expressions) so you cannot have a filter for messages that contain phone numbers.

We often get spam messages that have a few dozen addresses in the TO and CC fields but there’s no filter to automatically redirect such messages to the SPAM folder of Gmail. That’s where Google Scripts can help. You can setup advanced filters that aren’t available in the native version of Gmail.
Advanced Gmail Filters

What you see above is a set of 10 Gmail filters that were created with Apps Script. You can have a filter to process messages that contain tons of links. Or messages that have too many attachments. Or messages that have just a word or two in the message body.
The best part is that you don’t have to know scripting to use either of these filters. Just follow these 3 easy steps:
  1. Click here to copy the Gmail Filters sheet into your Google Drive. You can write OFF to deactivate any of the available rules.
  2. Go to the Gmail Filters menu in the sheet, choose Initialize and grant the necessary permissions to the script.
  3. Now choose Turn-on Gmail Filter to activate your filters. You may close the Google sheet now.
          Here’s what happens behind the scenes. The script will run in the background every 10 minutes and monitor any new unread messages in your Gmail inbox. It will then run the various rules against these messages. The native filters in Gmail take precedence and then your custom rules specified in the sheet are applied.

Courtesy: www.labnol.org

Read Original Post Here

Thursday, 17 April 2014

How to Save your Gmail Attachments to Google Drive Automatically

            Your email messages in G mail have attachments – images, documents, videos, etc. – and you can automatically save them all to a specific folder inside Google Drive using the Send to Google Drive. The latest version lets you specify a list of file types and only file attachments belonging to those types will be saved to your Google Drive.

If you haven’t used Send to Google Drive before, here’s how it works.


         You specify a Gmail label name in the sheet and the script will scan all your existing and incoming email messages inside that label for attachments. You can say “inbox” to monitor the inbox folder, or specify a user label or say “all” to monitor every folder in your Gmail mailbox. If the script finds an attachment, the file is downloaded to your Google Drive.

         You neither have to install any browser extensions nor do you have to grant access to your Gmail or Google Drive to a third-party. And since Google Drive synchronizes with your mobile device and desktop, the saved email attachments will instantly become available on all your other devices.


Save files attachments from Gmail to any Google Drive folder.
Save Gmail Attachments to Google Drive

       Here’s a step by step guide on how you can setup the Send to Google Drive program for your Gmail account. It takes less than a minute.

  • Click here to create a copy of the Send to Google Drive sheet in your Google Drive.
  • Open the sheet and you should see a new Gmail Attachments menu at the top (see screenshot). Choose Authorize (Step #1) and grant the necessary permissions. This is an open-source Google Script) that runs in your own Google account and no one else will have access to any of your data.
  • Click the Gmail Attachments menu again and select Run (step #2). Close the Google sheet and the script will begin downloading attachments from Gmail to your Google Drive in the background.

  • The program will monitor the specified Gmail label every five minutes and as soon as it finds a message that has attachments, it will automatically save the file(s) to a folder in your Google Drive.

Once the attachments have been saved, a new label — Processed — is applied to the Gmail message indicating that the message has been processed by the script. It saves all types of attachments but you can also specify a list of extensions separated by commas.

If you would like to stop the script later, open the same Google Sheet and choose Uninstall from the Gmail Attachments menu.


Courtesy : www.labnol.org