Free Email Marketing Software to create & send email
Emit new events when a new template is created. See the docs
Emits an event each time a new contact is created in Zoho CRM
Emit new events each time a new module/record is created in Zoho CRM
Converts a Lead into a Contact or an Account. See the documentation
Allows to trigger campaigns with personalization parameter added to the email template. See the docs here
Downloads an attachment file from Zoho CRM, saves it in the temporary file system and exports the file path for use in a future step.
Mailmodo's API turns email marketing into a more powerful tool by allowing you to automate and personalize your email campaigns. Through Pipedream, you can trigger workflows based on events from other apps, update customer data in real time, send transactional emails without leaving your app, and analyze the performance of your campaigns. By leveraging Pipedream's serverless platform, you can integrate Mailmodo with countless apps to enhance your marketing strategies, improve customer engagement, and streamline your communication processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mailmodo: {
type: "app",
app: "mailmodo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.mailmodo.com/api/v1/campaigns?type=CONTACT_LIST`,
headers: {
"Content-Type": `application/json`,
"mmApiKey": `${this.mailmodo.$auth.api_key}`,
},
})
},
})
The Zoho CRM API enables the manipulation and retrieval of data within Zoho CRM, a platform for managing your sales, marketing, support, and inventory in a single system. Leveraging this on Pipedream, you can automate tasks like syncing contacts, updating lead statuses, or creating custom CRM operations that trigger actions in other apps. Pipedream's serverless platform allows for real-time data processing, transforming, and orchestrating workflows that respond to events in Zoho CRM with minimal latency.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_crm: {
type: "app",
app: "zoho_crm",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.zoho_crm.$auth.api_domain}/crm/v2/users?type=CurrentUser`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_crm.$auth.oauth_access_token}`,
},
})
},
})