with ProxiedMail and Autobound?
Write personalized content using Autobound. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
proxiedmail: {
type: "app",
app: "proxiedmail",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.proxiedmail.$auth.url}/api/v1/proxy-bindings`,
headers: {
"Token": `${this.proxiedmail.$auth.api_key}`,
},
})
},
})
The Autobound API enables sales teams to enhance outreach by providing targeted sales communications. By leveraging data like industry news, hiring changes, and company growth, Autobound helps to personalize sales pitches and increase the relevance of your messages. With Pipedream, you can automate workflows using the Autobound API, connecting sales insights with other apps to create powerful sales automation systems, track engagement, and streamline communications.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
autobound: {
type: "app",
app: "autobound",
}
},
async run({steps, $}) {
const data = {
"contactEmail": "michael@pipedream.com",
"userEmail": "sergio@pipekit.pro",
"contentType": "email"
}
return await axios($, {
method: "post",
url: `https://api.autobound.ai/api/external/generate-content/v3.1`,
headers: {
"X-API-KEY": `${this.autobound.$auth.api_key}`,
"Content-Type": `application/json`,
},
data,
})
},
})