What is your goal?
Automatically send customer order data from an e-commerce platform to a CRM system and trigger a confirmation email when a new order is placed.
What is the problem & what have you tried?
The automation runs, but the data sent to the CRM is incomplete or mismatched (e.g. names appear in the email field). I’ve tried remapping fields and using different modules, but the issue persists. I also attempted using filters, but incorrect data still passes through.
Error messages or input/output bundles
Everything is just mixed up
`` Bundle 1: { “customer_name”: “John Doe”, “customer_email”: null, “order_id”: “12345” } Bundle 2 (CRM Output): { “name”: “John Doe”, “email”: “John Doe”, “order_ref”: “12345” } ```