You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/sendgrid/actions/create-send/create-send.mjs
+24-17Lines changed: 24 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -36,19 +36,22 @@ export default {
36
36
],
37
37
description: "The recipient List IDs that will receive the Single Send.",
38
38
optional: true,
39
+
hidden: true,
39
40
},
40
41
segmentIds: {
41
42
propDefinition: [
42
43
common.props.sendgrid,
43
44
"segmentIds",
44
45
],
45
46
optional: true,
47
+
hidden: true,
46
48
},
47
49
all: {
48
50
type: "boolean",
49
51
label: "All",
50
52
description: "Set to `true` to send to All Contacts. If set to `false`, at least one `List Ids` or `Segment Ids` value must be provided before the Single Send is scheduled to be sent to recipients.",
51
-
optional: true,
53
+
default: true,
54
+
reloadProps: true,
52
55
},
53
56
subject: {
54
57
type: "string",
@@ -92,9 +95,10 @@ export default {
92
95
optional: true,
93
96
},
94
97
suppressionGroupId: {
95
-
type: "integer",
96
-
label: "Suppression Group Id",
97
-
description: "The ID of the Suppression Group to allow recipients to unsubscribe — you must provide this or the `Custom Unsubscribe URL`.",
0 commit comments