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
description: "Emit new event when a contact unsubscribes in Salesforge. [See the documentation](https://help.salesforge.ai/en/articles/8680365-how-to-use-webhooks)",
description: "Emit new event when an email bounces in Salesforge. [See the documentation](https://help.salesforge.ai/en/articles/8680365-how-to-use-webhooks)",
8
+
version: "0.0.1",
9
+
type: "source",
10
+
dedupe: "unique",
11
+
methods: {
12
+
...common.methods,
13
+
getEventType(){
14
+
return"email_bounced";
15
+
},
16
+
getSummary({ contact }){
17
+
return`Email bounced to ${contact?.email||"unknown recipient"}`;
Copy file name to clipboardExpand all lines: components/salesforge/sources/email-opened-instant/email-opened-instant.mjs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ export default {
4
4
...common,
5
5
key: "salesforge-email-opened-instant",
6
6
name: "Email Opened (Instant)",
7
-
description: "Emit new event when an email is opened in Salesforge. [See the documentation](https://api.salesforge.ai/public/v2/swagger/index.html)",
7
+
description: "Emit new event when an email is opened in Salesforge. [See the documentation](https://help.salesforge.ai/en/articles/8680365-how-to-use-webhooks)",
description: "Emit new event when an email reply is received in Salesforge. [See the documentation](https://help.salesforge.ai/en/articles/8680365-how-to-use-webhooks)",
Copy file name to clipboardExpand all lines: components/salesforge/sources/email-sent-instant/email-sent-instant.mjs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ export default {
4
4
...common,
5
5
key: "salesforge-email-sent-instant",
6
6
name: "Email Sent (Instant)",
7
-
description: "Emit new event when an email is sent in Salesforge. [See the documentation](https://api.salesforge.ai/public/v2/swagger/index.html)",
7
+
description: "Emit new event when an email is sent in Salesforge. [See the documentation](https://help.salesforge.ai/en/articles/8680365-how-to-use-webhooks)",
Copy file name to clipboardExpand all lines: components/salesforge/sources/link-clicked-instant/link-clicked-instant.mjs
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ export default {
4
4
...common,
5
5
key: "salesforge-link-clicked-instant",
6
6
name: "Link Clicked (Instant)",
7
-
description: "Emit new event when a link is clicked in Salesforge. [See the documentation](https://api.salesforge.ai/public/v2/swagger/index.html)",
7
+
description: "Emit new event when a link is clicked in Salesforge. [See the documentation](https://help.salesforge.ai/en/articles/8680365-how-to-use-webhooks)",
description: "Emit new event when a negative reply is received in Salesforge. [See the documentation](https://help.salesforge.ai/en/articles/8680365-how-to-use-webhooks)",
8
+
version: "0.0.1",
9
+
type: "source",
10
+
dedupe: "unique",
11
+
methods: {
12
+
...common.methods,
13
+
getEventType(){
14
+
return"negative_reply";
15
+
},
16
+
getSummary({ contact }){
17
+
return`Negative reply received from ${contact?.email||"unknown contact"}`;
0 commit comments