Hi, anyone found a CRM tool integrated with replit that is not paid? I wanna do basic stuff like sending an replying emails. Also set rules to send automatic email when user does x in the product
I do not know about a full CRM tool. But just for sending SMTP without having to pay for an email platform, I build all my apps to send out via SMTP using my own externally hosted email accounts.
Easy-ish to build. Dive in, come back with challenges, we can work through them.
Steve is right, use nodemailer with SMTP for free light-duty (not mass mail) email automation.
You can definitely use Nodemailer for this — it’s solid for sending and replying to emails.
Another suggestion: try EmailJS.
It’s simple, beginner-friendly, works well with Replit, and you can quickly build basic CRM-style workflows. You can even set up rules to trigger automatic emails when a user performs an action.
Worth checking out if you want something lightweight and free to start with.