n8n-nodes-gmail-custom 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +33 -0
- package/package.json +4 -1
package/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# n8n-nodes-gmail-custom
|
|
2
|
+
|
|
3
|
+
Custom Gmail node for n8n with token caching and 429 retry.
|
|
4
|
+
|
|
5
|
+
A drop-in replacement for the native Gmail v2 Send operation, optimized for service account usage with domain-wide delegation.
|
|
6
|
+
|
|
7
|
+
## Features
|
|
8
|
+
|
|
9
|
+
- Same UI as native Gmail Send (To, Subject, Email Type, Message, Options with CC/BCC/ReplyTo/Attachments)
|
|
10
|
+
- **Token caching** — access token is reused across calls (1 auth call per hour instead of per email)
|
|
11
|
+
- **429 retry** — automatic retry with exponential backoff when rate limited
|
|
12
|
+
- **From Email inline** — specify the delegated user directly in the node (no need to set in credential)
|
|
13
|
+
- No extra API calls (no GET /profile like the native node)
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
In n8n: **Settings → Community Nodes → Install** → Enter `n8n-nodes-gmail-custom`
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
1. Add a **Gmail Custom** node to your workflow
|
|
22
|
+
2. Select your **Google API** credential (service account)
|
|
23
|
+
3. Fill in:
|
|
24
|
+
- **From Email**: the delegated user to send as (e.g. `segreteria.a@domain.com`)
|
|
25
|
+
- **To**: recipient(s)
|
|
26
|
+
- **Subject**: email subject
|
|
27
|
+
- **Email Type**: Text or HTML
|
|
28
|
+
- **Message**: email body
|
|
29
|
+
4. Configure advanced Options as needed (CC, BCC, ReplyTo, Attachments)
|
|
30
|
+
|
|
31
|
+
## License
|
|
32
|
+
|
|
33
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-gmail-custom",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Custom Gmail node for n8n with token caching and 429 retry",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package",
|
|
@@ -9,6 +9,9 @@
|
|
|
9
9
|
"google"
|
|
10
10
|
],
|
|
11
11
|
"license": "MIT",
|
|
12
|
+
"peerDependencies": {
|
|
13
|
+
"n8n-workflow": "*"
|
|
14
|
+
},
|
|
12
15
|
"publishConfig": {
|
|
13
16
|
"access": "public"
|
|
14
17
|
},
|