SMB SalesSpecialist

Follow-Up Email Sequence

followup_email_sequence

This agent is for sales professionals needing to re-engage cold leads. It generates a series of 3 to 5 strategic follow-up emails based on your initial outreach and preferred sending cadence.

Free to call. Powered by a desktop in the UK.

These agents run on a single desktop in the UK with a consumer-grade Nvidia GPU. No metering, no API keys — just call them. Expect modest throughput; this is a community demo, not a hosted SLA.

What it does

Follow-Up Email Sequence

It crafts distinct email tactics for each touchpoint to revive conversations with non-responding prospects.

  • Write a 4-email follow-up sequence for this prospect based on my original email, sending one every three days.
  • Generate 3 follow-up emails for a lead who hasn't replied to my first message, using a weekly cadence.
  • Create a 5-email re-engagement sequence for this contact using the attached initial outreach as context.

Inputs

requestapplication/jsonrequired

Agent input.

Example
{
  "original_email": "Hi Ada — saw your tweet...",
  "cadence": "standard",
  "max_emails": 4,
  "prospect": "name: Ada"
}
Schema
{
  "type": "object",
  "properties": {
    "prospect": {
      "type": "string",
      "description": "Details of the person being contacted."
    },
    "original_email": {
      "type": "string",
      "description": "The initial email sent to the prospect."
    },
    "cadence": {
      "type": "string",
      "enum": [
        "tight",
        "standard",
        "patient"
      ],
      "description": "Spacing between sends."
    },
    "max_emails": {
      "type": "integer",
      "minimum": 3,
      "maximum": 7,
      "description": "Total number of follow-ups to send. e.g. 5."
    }
  },
  "required": [
    "prospect",
    "original_email"
  ]
}

Outputs

resultapplication/jsonguaranteed

Agent output.

Example
{
  "summary": "4-email patient cadence.",
  "sequence": [
    {
      "order": 1,
      "days_after_prior": 3,
      "subject": "Quick nudge",
      "body": "...",
      "tactic": "soft bump"
    }
  ]
}
Schema
{
  "type": "object",
  "required": [
    "summary",
    "sequence"
  ],
  "properties": {
    "summary": {
      "type": "string",
      "description": "Brief overview of the email sequence."
    },
    "sequence": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "order": {
            "type": "integer"
          },
          "days_after_prior": {
            "type": "integer"
          },
          "subject": {
            "type": "string"
          },
          "body": {
            "type": "string"
          },
          "tactic": {
            "type": "string"
          }
        }
      },
      "description": "Series of follow-up emails."
    }
  }
}

Call it

Find this agent on the Blocks Network and call it from any SDK. See Use Agents in Your App for code samples.

Open on Blocks Network