n8n-nodes-cakemail 1.1.2 → 1.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.
@@ -778,7 +778,8 @@ class Cakemail {
778
778
  },
779
779
  default: '',
780
780
  placeholder: 'user@example.com',
781
- description: 'The email address of the contact',
781
+ description: 'Email address of the contact. Must be a valid email format.',
782
+ hint: 'Example: john.doe@company.com',
782
783
  },
783
784
  {
784
785
  displayName: 'Additional Fields',
@@ -1126,7 +1127,8 @@ class Cakemail {
1126
1127
  },
1127
1128
  },
1128
1129
  default: '',
1129
- description: 'Name of the sender',
1130
+ description: 'Name that appears in the "From" field when recipients receive the email',
1131
+ placeholder: 'e.g., John Doe or Acme Marketing Team',
1130
1132
  },
1131
1133
  {
1132
1134
  displayName: 'Sender Email',
@@ -1140,7 +1142,8 @@ class Cakemail {
1140
1142
  },
1141
1143
  },
1142
1144
  default: '',
1143
- description: 'Email address of the sender',
1145
+ description: 'Email address that appears in the "From" field. Must be verified in your Cakemail account.',
1146
+ placeholder: 'e.g., noreply@yourdomain.com',
1144
1147
  },
1145
1148
  {
1146
1149
  displayName: 'Subject',
@@ -1154,7 +1157,8 @@ class Cakemail {
1154
1157
  },
1155
1158
  },
1156
1159
  default: '',
1157
- description: 'Email subject line',
1160
+ description: 'Email subject line that recipients will see in their inbox',
1161
+ placeholder: 'e.g., 🎉 Special Offer Just for You!',
1158
1162
  },
1159
1163
  {
1160
1164
  displayName: 'Subject',
@@ -1168,6 +1172,7 @@ class Cakemail {
1168
1172
  },
1169
1173
  default: '',
1170
1174
  description: 'New subject line (leave empty to keep current)',
1175
+ placeholder: 'e.g., Updated: Weekly Newsletter',
1171
1176
  },
1172
1177
  {
1173
1178
  displayName: 'HTML Content',
@@ -1183,7 +1188,8 @@ class Cakemail {
1183
1188
  },
1184
1189
  },
1185
1190
  default: '',
1186
- description: 'HTML content of the email',
1191
+ description: 'HTML content of the email. Use standard HTML tags and inline CSS for styling.',
1192
+ placeholder: 'e.g., <html><body><h1>Hello!</h1><p>Your content here...</p></body></html>',
1187
1193
  },
1188
1194
  {
1189
1195
  displayName: 'Text Content',
@@ -1199,7 +1205,8 @@ class Cakemail {
1199
1205
  },
1200
1206
  },
1201
1207
  default: '',
1202
- description: 'Plain text content of the email (optional)',
1208
+ description: 'Plain text version for email clients that don\'t support HTML. Recommended for better deliverability.',
1209
+ placeholder: 'e.g., Hello! Your plain text content here...',
1203
1210
  },
1204
1211
  {
1205
1212
  displayName: 'Preview Text',
@@ -1212,7 +1219,8 @@ class Cakemail {
1212
1219
  },
1213
1220
  },
1214
1221
  default: '',
1215
- description: 'Preview text shown in email clients (optional)',
1222
+ description: 'Preview text (preheader) shown next to the subject line in email clients. Keep it short and compelling!',
1223
+ placeholder: 'e.g., Don\'t miss out on this exclusive offer...',
1216
1224
  },
1217
1225
  {
1218
1226
  displayName: 'Scheduled For',
@@ -1225,7 +1233,9 @@ class Cakemail {
1225
1233
  },
1226
1234
  },
1227
1235
  default: '',
1228
- description: 'ISO 8601 datetime when to send the campaign (e.g., 2024-12-31T23:59:59Z). Leave empty for immediate scheduling.',
1236
+ description: 'When to send the campaign. Use ISO 8601 format (UTC timezone). Leave empty to send immediately.',
1237
+ placeholder: 'e.g., 2025-12-31T23:59:59Z or {{ $now.toISO() }}',
1238
+ hint: 'Format: YYYY-MM-DDTHH:mm:ssZ (UTC time)',
1229
1239
  },
1230
1240
  {
1231
1241
  displayName: 'Test Emails',
@@ -1239,8 +1249,8 @@ class Cakemail {
1239
1249
  },
1240
1250
  },
1241
1251
  default: '',
1242
- description: 'Comma-separated list of email addresses to send test to',
1243
- placeholder: 'test1@example.com, test2@example.com',
1252
+ description: 'Comma-separated list of email addresses to send test emails to. Verify campaign appearance before sending to your list.',
1253
+ placeholder: 'john@example.com, mary@example.com, dev-team@example.com',
1244
1254
  },
1245
1255
  {
1246
1256
  displayName: 'Filter',
@@ -1253,7 +1263,9 @@ class Cakemail {
1253
1263
  },
1254
1264
  },
1255
1265
  default: '',
1256
- description: 'Filter campaigns (e.g., "status==sent;name==Newsletter")',
1266
+ description: 'Filter campaigns using query syntax. Valid fields: status, name, type, list_id. Use == operator and ; to combine.',
1267
+ placeholder: 'e.g., status==sent;name==Newsletter',
1268
+ hint: 'Examples: "status==draft" or "type==standard;list_id==123"',
1257
1269
  },
1258
1270
  {
1259
1271
  displayName: 'Sort',
@@ -1266,7 +1278,9 @@ class Cakemail {
1266
1278
  },
1267
1279
  },
1268
1280
  default: '',
1269
- description: 'Sort campaigns (e.g., "-created_on" for descending, "+name" for ascending)',
1281
+ description: 'Sort campaigns by field. Use + for ascending or - for descending order.',
1282
+ placeholder: 'e.g., -created_on or +name',
1283
+ hint: 'Valid fields: name, created_on, scheduled_for, scheduled_on, updated_on, type',
1270
1284
  },
1271
1285
  {
1272
1286
  displayName: 'Webhook ID',
@@ -832,7 +832,8 @@ export class Cakemail implements INodeType {
832
832
  },
833
833
  default: '',
834
834
  placeholder: 'user@example.com',
835
- description: 'The email address of the contact',
835
+ description: 'Email address of the contact. Must be a valid email format.',
836
+ hint: 'Example: john.doe@company.com',
836
837
  },
837
838
 
838
839
  // Contact fields for create/update
@@ -1203,7 +1204,8 @@ export class Cakemail implements INodeType {
1203
1204
  },
1204
1205
  },
1205
1206
  default: '',
1206
- description: 'Name of the sender',
1207
+ description: 'Name that appears in the "From" field when recipients receive the email',
1208
+ placeholder: 'e.g., John Doe or Acme Marketing Team',
1207
1209
  },
1208
1210
  {
1209
1211
  displayName: 'Sender Email',
@@ -1217,7 +1219,8 @@ export class Cakemail implements INodeType {
1217
1219
  },
1218
1220
  },
1219
1221
  default: '',
1220
- description: 'Email address of the sender',
1222
+ description: 'Email address that appears in the "From" field. Must be verified in your Cakemail account.',
1223
+ placeholder: 'e.g., noreply@yourdomain.com',
1221
1224
  },
1222
1225
 
1223
1226
  // Subject (for create, update)
@@ -1233,7 +1236,8 @@ export class Cakemail implements INodeType {
1233
1236
  },
1234
1237
  },
1235
1238
  default: '',
1236
- description: 'Email subject line',
1239
+ description: 'Email subject line that recipients will see in their inbox',
1240
+ placeholder: 'e.g., 🎉 Special Offer Just for You!',
1237
1241
  },
1238
1242
  {
1239
1243
  displayName: 'Subject',
@@ -1247,6 +1251,7 @@ export class Cakemail implements INodeType {
1247
1251
  },
1248
1252
  default: '',
1249
1253
  description: 'New subject line (leave empty to keep current)',
1254
+ placeholder: 'e.g., Updated: Weekly Newsletter',
1250
1255
  },
1251
1256
 
1252
1257
  // Content (for create, update)
@@ -1264,7 +1269,8 @@ export class Cakemail implements INodeType {
1264
1269
  },
1265
1270
  },
1266
1271
  default: '',
1267
- description: 'HTML content of the email',
1272
+ description: 'HTML content of the email. Use standard HTML tags and inline CSS for styling.',
1273
+ placeholder: 'e.g., <html><body><h1>Hello!</h1><p>Your content here...</p></body></html>',
1268
1274
  },
1269
1275
  {
1270
1276
  displayName: 'Text Content',
@@ -1280,7 +1286,8 @@ export class Cakemail implements INodeType {
1280
1286
  },
1281
1287
  },
1282
1288
  default: '',
1283
- description: 'Plain text content of the email (optional)',
1289
+ description: 'Plain text version for email clients that don\'t support HTML. Recommended for better deliverability.',
1290
+ placeholder: 'e.g., Hello! Your plain text content here...',
1284
1291
  },
1285
1292
  {
1286
1293
  displayName: 'Preview Text',
@@ -1293,7 +1300,8 @@ export class Cakemail implements INodeType {
1293
1300
  },
1294
1301
  },
1295
1302
  default: '',
1296
- description: 'Preview text shown in email clients (optional)',
1303
+ description: 'Preview text (preheader) shown next to the subject line in email clients. Keep it short and compelling!',
1304
+ placeholder: 'e.g., Don\'t miss out on this exclusive offer...',
1297
1305
  },
1298
1306
 
1299
1307
  // Scheduled For (for schedule, reschedule)
@@ -1308,7 +1316,9 @@ export class Cakemail implements INodeType {
1308
1316
  },
1309
1317
  },
1310
1318
  default: '',
1311
- description: 'ISO 8601 datetime when to send the campaign (e.g., 2024-12-31T23:59:59Z). Leave empty for immediate scheduling.',
1319
+ description: 'When to send the campaign. Use ISO 8601 format (UTC timezone). Leave empty to send immediately.',
1320
+ placeholder: 'e.g., 2025-12-31T23:59:59Z or {{ $now.toISO() }}',
1321
+ hint: 'Format: YYYY-MM-DDTHH:mm:ssZ (UTC time)',
1312
1322
  },
1313
1323
 
1314
1324
  // Test Emails (for sendTest)
@@ -1324,8 +1334,8 @@ export class Cakemail implements INodeType {
1324
1334
  },
1325
1335
  },
1326
1336
  default: '',
1327
- description: 'Comma-separated list of email addresses to send test to',
1328
- placeholder: 'test1@example.com, test2@example.com',
1337
+ description: 'Comma-separated list of email addresses to send test emails to. Verify campaign appearance before sending to your list.',
1338
+ placeholder: 'john@example.com, mary@example.com, dev-team@example.com',
1329
1339
  },
1330
1340
 
1331
1341
  // Filter (for list)
@@ -1340,7 +1350,9 @@ export class Cakemail implements INodeType {
1340
1350
  },
1341
1351
  },
1342
1352
  default: '',
1343
- description: 'Filter campaigns (e.g., "status==sent;name==Newsletter")',
1353
+ description: 'Filter campaigns using query syntax. Valid fields: status, name, type, list_id. Use == operator and ; to combine.',
1354
+ placeholder: 'e.g., status==sent;name==Newsletter',
1355
+ hint: 'Examples: "status==draft" or "type==standard;list_id==123"',
1344
1356
  },
1345
1357
 
1346
1358
  // Sort (for list)
@@ -1355,7 +1367,9 @@ export class Cakemail implements INodeType {
1355
1367
  },
1356
1368
  },
1357
1369
  default: '',
1358
- description: 'Sort campaigns (e.g., "-created_on" for descending, "+name" for ascending)',
1370
+ description: 'Sort campaigns by field. Use + for ascending or - for descending order.',
1371
+ placeholder: 'e.g., -created_on or +name',
1372
+ hint: 'Valid fields: name, created_on, scheduled_for, scheduled_on, updated_on, type',
1359
1373
  },
1360
1374
 
1361
1375
  // ================== Webhook Operation Parameters ==================
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-cakemail",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "n8n node for Cakemail - workflow-native email platform",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",