Skip to main content

Automated upload & send a large file with TransferNow

Workflow preview

Workflow preview
100%
Automated upload & send a large file with TransferNow preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

This workflow creates a user friendly web form to upload a file, which allows users to upload a single large file ( up to 5Gb ) through a custom web form and automatically send it via TransferNow ,...

Best for

  • Content Creation automation workflows
  • File Management automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.stickynote, n8n-nodes-base.formtrigger, n8n-nodes-base.code, n8n-nodes-base.set, n8n-nodes-base.httprequest, n8n-nodes-base.form, n8n-nodes-base.if, n8n-nodes-base.merge

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Davide.

Original n8n.io source

1.1 Workflow description

Title
Automated upload & send a large file with TransferNow
Workflow name
Automated upload & send a large file with TransferNow

This workflow creates a user-friendly web form to upload a file, which allows users to upload a single large file (up to 5Gb) through a custom web form and automatically send it via TransferNow, handling the complex multi-part upload process required for large files.


Advantages

  • No manual steps: The entire process from file upload to email delivery is fully automated.
  • User-friendly: Anyone can upload files via a simple web form, without needing to access TransferNow directly.
  • Supports large files: TransferNow’s API handles large files that are not suitable for email attachments.
  • Secure file delivery: The workflow uses TransferNow’s secure, expiring download links.
  • Customizable: You can easily adjust the workflow to support multiple file types, multiple recipients, or different validity rules.
  • Scalable: Works for individuals, teams, or businesses that frequently need to share large documents.

How It Works

The workflow is triggered when a user submits the embedded web form. Here is the process:

  1. Form Trigger: A user accesses the form, fills in the required details (Title, Message, Recipient Email), and uploads a single PDF file. Submitting the form starts the workflow.
  2. File Processing: The workflow calculates the size of the uploaded file, which is a necessary parameter for the TransferNow API.
  3. Transfer Creation: It sends a request to the TransferNow API to create a new file transfer. The API responds with details needed for the upload, including a unique transferId and uploadId.
  4. Upload URL Retrieval: The workflow requests a pre-signed upload URL from TransferNow for the specific part of the file.
  5. File Upload: The binary file data from the form and the upload URL from the previous step are merged. The workflow then performs a direct PUT request to the secured TransferNow URL to upload the file's binary content.
  6. Upload Confirmation: After the upload, the workflow informs the TransferNow API that the file part upload is complete.
  7. Finalization: Once the entire upload is confirmed, the workflow finalizes the transfer on TransferNow's side.
  8. Data Retrieval & Response: The workflow fetches the final transfer data, constructs a public download URL, and sends a success message back to the user's browser, displaying the recipient's email and the download link.

Set Up Steps

To use this workflow, you need to configure the connection to the TransferNow API.

  1. Get TransferNow API Credentials:

    • Create a free account on TransferNow developer portal to get your API key (a 14-day free trial is available).
  2. Configure Credentials in n8n:

    • In the n8n editor, locate the HTTP Request nodes named "Set Transfer", "Get Upload Url", etc.
    • These nodes use a credential called "Header Auth TransferNow". You need to create this credential.
    • Go to Credentials > Add Credential and select "HTTP Header Auth".
    • Give it a name (e.g., "TransferNow API Key").
    • In the Name field, enter x-api-key.
    • In the Value field, paste your personal TransferNow API key.
    • Save the credential. The existing nodes will automatically use it, or you can select it from the dropdown in each node's credentials section.
  3. Activate the Workflow:

    • Save the workflow and click the Activate toggle to make it live.
    • Once activated, the On form submission node will provide a unique public URL for your form. Share this URL with users to start uploading and sending files.

Need help customizing?

Contact me for consulting and support or add me on Linkedin.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 2 - On form submission

Type / Role
n8n-nodes-base.formTrigger - formTrigger
Config choices
Version 2.3

Block 3 - Calculate size

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 4 - Set Json

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 5 - Set Transfer

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 6 - Get Upload Url

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 7 - Upload done

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 8 - Get transfer data

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 9 - Get parameters

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 10 - Form

Type / Role
n8n-nodes-base.form - form
Config choices
Version 2.3

Block 11 - Is complete?

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 12 - Send Transfer

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 13 - Send UploadUrl

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 14 - Merge

Type / Role
n8n-nodes-base.merge - merge
Config choices
Version 3.1

Block 15 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 16 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 17 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 18 - Sticky Note4

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 19 - Sticky Note5

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

3. Summary Table

Workflow Automated upload & send a large file with TransferNow
Complexity advanced
Nodes 19
Categories Content Creation, File Management
Author Davide
Published 19 Sept 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/8742/8742.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Automated upload & send a large file with TransferNow do?

This workflow creates a user friendly web form to upload a file, which allows users to upload a single large file ( up to 5Gb ) through a custom web form and automatically send it via TransferNow ,...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Content Creation, File Management use case.