Connic
Back to BlogChangelog

What We Shipped in December 2025

Stripe connector with webhook signature verification, Email connector with IMAP polling and attachment support, plus dashboard UI improvements.

January 2, 20264 min read

December brought two connectors that many of you have been asking for: Stripe for payment workflows and Email for inbox automation.

Stripe Connector

Receive Stripe webhook events and trigger agents on payment activity. The connector handles signature verification automatically using your webhook signing secret.

Setup is straightforward:

  1. Create a Stripe connector in your project
  2. Copy the generated webhook URL
  3. Add it to your Stripe Dashboard and select which events to receive
  4. Copy the signing secret (starts with whsec_) back to Connic

Your agent receives the full Stripe event payload, including the event type and all relevant data:

Agent receives
{
  "type": "invoice.paid",
  "data": {
    "object": {
      "customer": "cus_...",
      "amount_paid": 9900,
      "currency": "usd",
      ...
    }
  }
}

Email Connector

Connect to any IMAP mailbox and trigger agents when emails arrive. The connector polls your inbox and extracts the full email content including:

  • Subject, sender, recipients, and timestamp
  • Plain text and HTML body content
  • Attachments (passed to multimodal agents for processing)

Filter which emails trigger your agent using optional filters:

  • filter_from: Only process emails from specific senders
  • filter_subject: Match emails with specific subject keywords
  • filter_unread_only: Skip already-read messages
  • mark_as_read: Automatically mark processed emails as read

Dashboard Improvements

We've refreshed the dashboard UI across several pages:

  • Runs table now shows status badges with better visual hierarchy
  • Agent and connector pages have cleaner card layouts
  • Deployment status tracking is more prominent