1 pointby nikola4706 hours ago1 comment
  • nikola4706 hours ago
    Happy to answer questions!

    The idea for ParseForce came from repeatedly dealing with workflows where important data only arrived via email.

    Most existing solutions rely on regex or fixed patterns, which tend to break when email formats change. That becomes a constant maintenance problem.

    The approach here is a bit different: instead of matching patterns, you define the schema you want (for example invoiceNumber, items, total, etc.) and the system extracts the data into structured JSON using AI.

    The goal was to make email integrations feel more like webhook integrations.

    Curious how others here are currently handling email parsing in their systems.