@pipedream/reachmail 0.1.0 → 0.2.0
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
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Overview
|
|
2
|
+
|
|
3
|
+
The ReachMail API lets you seamlessly integrate email marketing capabilities into your workflows on Pipedream. With it, you can automate email list management, campaign creation, and performance tracking. This flexibility opens up possibilities for custom email marketing automation, audience segmentation, and targeted outreach based on user actions or data from other apps. By harnessing the power of Pipedream's serverless platform, you can build workflows that trigger from various events and connect with numerous other services to create a sophisticated, automated email marketing machine.
|
|
4
|
+
|
|
5
|
+
# Example Use Cases
|
|
6
|
+
|
|
7
|
+
- **Automated Campaign Creation from Webhooks**: Trigger an email campaign in ReachMail when a specific event occurs in your app. For instance, you could set up a Pipedream workflow where a new sign-up on your platform via a webhook triggers a welcome email sequence in ReachMail.
|
|
8
|
+
|
|
9
|
+
- **Dynamic Audience Segmentation with Google Sheets**: Maintain a Google Sheet with contact information and preferences. Use a Pipedream workflow to periodically sync this data to ReachMail, automatically updating email lists for targeted campaigns based on the latest data.
|
|
10
|
+
|
|
11
|
+
- **Performance-Driven Emails with ReachMail and Slack**: Monitor your email campaign performance with ReachMail, and use Pipedream to send summary reports or alerts to a Slack channel when key metrics hit certain thresholds, ensuring that your team stays informed about your marketing efforts in real time.
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import reachmail from "../../reachmail.app.mjs";
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
key: "reachmail-list-list-id-options",
|
|
5
|
+
name: "List List ID Options",
|
|
6
|
+
description: "Retrieves available options for the List ID field.",
|
|
7
|
+
version: "0.0.1",
|
|
8
|
+
type: "action",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: true,
|
|
13
|
+
},
|
|
14
|
+
props: {
|
|
15
|
+
reachmail,
|
|
16
|
+
},
|
|
17
|
+
async run({ $ }) {
|
|
18
|
+
const options = await reachmail.propDefinitions.listId.options.call(this.reachmail, {});
|
|
19
|
+
$.export("$summary", `Successfully retrieved ${options.length} option${
|
|
20
|
+
options.length === 1
|
|
21
|
+
? ""
|
|
22
|
+
: "s"
|
|
23
|
+
}`);
|
|
24
|
+
return options;
|
|
25
|
+
},
|
|
26
|
+
};
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "reachmail-opt-out-recipient-from-list",
|
|
5
5
|
name: "Opt Out Recipient From List",
|
|
6
6
|
description: "The action will remove the recipient from the specified list. [See the documentation](https://services.reachmail.net/)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.2",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: true,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: false,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
reachmail,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipedream/reachmail",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Pipedream ReachMail Components",
|
|
5
5
|
"main": "reachmail.app.mjs",
|
|
6
6
|
"keywords": [
|
|
@@ -13,6 +13,6 @@
|
|
|
13
13
|
"access": "public"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@pipedream/platform": "^1.
|
|
16
|
+
"@pipedream/platform": "^1.6.8"
|
|
17
17
|
}
|
|
18
18
|
}
|