Google Drive File Upload Email Notification - n8n Workflow

Use this n8n workflow to automatically receive email notifications whenever a new file is uploaded to a specified Google Drive folder. Quick setup with n8n templates.

Workflow Preview

Ready to automate?

Download this n8n workflow template and start using it instantly.

Who is this best for?

Team leads needing immediate alerts about shared document submissions.
Users looking to build reliable monitoring solutions using n8n.
Anyone requiring reliable file activity notifications without constantly checking Google Drive folders.
Developers looking for practical n8n templates for cloud operations.

Overview

Keeping track of new files in shared cloud storage folders can be time-consuming and inefficient. This powerful n8n automation eliminates manual checking by instantly alerting stakeholders via email the moment a new file appears in a designated Google Drive folder. This specific n8n workflow template uses a Google Drive Trigger to monitor events, providing real-time awareness for critical uploads. It demonstrates a foundational capability of n8n: connecting cloud services to communication channels reliably. If you are starting your automation journey, this n8n node configuration provides a great example of an event-driven flow.

How it Works

This efficient n8n workflow operates as an event-driven system, ensuring immediate execution upon file creation:


  1. Google Drive Trigger Activation: The n8n trigger is set to continuously monitor a specific Google Drive folder ID. The moment a fileCreated event is detected, the n8n workflow is activated.

  2. Data Extraction: The Google Drive n8n node extracts all relevant metadata about the newly uploaded file, crucially capturing the file's name.

  3. Email Composition: The captured file name (via {{$json["name"]}}) is dynamically inserted into the body of a standardized email message. The subject line is set to 'File Update'.

  4. Send Notification: The final n8n node, 'Send Email', utilizes SMTP credentials to dispatch the customized alert to the specified recipient (e.g., [email protected]), completing the automation flow. This core logic flow demonstrates the simplicity of using an n8n template for operational alerts.

Installation Guide


  1. Import: Copy the provided n8n workflow JSON and import it directly into your n8n instance.

  2. Google Drive Credentials: Click on the 'Google Drive Trigger' n8n node and set up or select your OAuth2 credentials to grant n8n access to your Google Drive account. Ensure this account has access to the folder you wish to monitor.

  3. Folder Configuration: In the 'Google Drive Trigger' n8n node parameters, update the folderToWatch parameter with the ID of the specific Google Drive folder you want to monitor.

  4. Email Credentials: Select or configure the SMTP (or standard Email Send) credentials for the 'Send Email' n8n node.

  5. Recipient Setup: Update the toEmail parameter in the 'Send Email' n8n node to the actual email address where you want to receive these file upload notifications. The current recipient is a placeholder ([email protected]).

  6. Activate: Save and activate the n8n workflow to start monitoring for new uploads.

Node Details

Google Drive Trigger (n8n trigger):
Function: This n8n node acts as the starting point, listening for events within Google Drive.
Key Configuration: Set to monitor the fileCreated event type. It is configured to watch a specificFolder, requiring the user to input the correct Folder ID.

Send Email (n8n node):
Function: Sends the actual notification email using configured SMTP credentials.
Key Configuration: Uses an expression in the message body (=A file in your Google Drive file folder has been created: {{$json["name"]}}) to dynamically include the file name passed from the previous Google Drive n8n trigger. Requires valid email recipient and SMTP setup.

Related n8n Workflows

Free

Nodes: 2 Nodes
Updated: December 26 2025
View all
Created by

Featured*