FollowUp for email is a lightweight productivity suite that keeps your conversations and tasks from slipping through the cracks.
Go to siteThe Followup API facilitates the automation of email follow-ups, allowing users to schedule, track, and manage follow-up emails directly within their workflow. By integrating with Pipedream, you can leverage the API to craft intricate automation sequences that can improve response rates, ensure timely engagements, and enhance overall email productivity. Taking advantage of Pipedream's serverless platform, you can connect the Followup API with hundreds of other services to streamline communication tasks, set up reminders, or trigger actions based on email interactions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
followup: {
type: "app",
app: "followup",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.followup.cc/v1/reminders.json`,
params: {
api_key: `${this.followup.$auth.api_key}`,
},
})
},
})
Sales Lead Nurturing: Automate follow-up emails to leads captured through a CRM like Salesforce. When a new lead is added to a sales pipeline, trigger a sequence of personalized follow-up emails through Followup to maintain engagement and move leads through the sales funnel.
Customer Support Ticket Reminders: Create a workflow where new support tickets from a platform like Zendesk automatically set up follow-up reminders. This ensures that customers receive timely updates, and support agents are reminded to close pending tickets.
Event Follow-ups: After an event, you can automatically send personalized follow-up emails to attendees. Integrate the Followup API with event management platforms such as Eventbrite, triggering customized email sequences thanking the attendees and providing additional resources or next steps.
Followup uses API keys for authentication. When you connect your Followup account, Pipedream securely stores the keys so you can easily authenticate to Followup APIs in both code and no-code steps.
Your FollowUp.cc API key will be found on the Developer page.