Sending 200 emails with N8N: I need to slow down the workflow, right?
Hey! A question for all cold-campaigners out here! For a client workflow, I need to send 200+ emails from a personalized database I built through scraping. Flow: Google Sheets (database) β n8n Code Node generates the personalized email β Gmail node sends β then updates the sheet with βsentβ. Butβ¦ thinking out loud: sending 200+ emails via n8n could be a problem because of send speed, right?On volume Iβm not too concerned (I know Workspace can allow up to ~2K/day), but what about sending too fast (which is what this workflow is gonna do for sure)? For those experienced running cold campaigns through n8n:If n8n sends emails back-to-back with no delay, can Gmail/Workspace flag / rate-limit / suspend due to βsuspicious behaviorβ, even if the volume is within limits? What Iβm thinking to do: - Use Split In Batches (batch size 5β10) - Add a Wait node (delay 30β60s) - Then: Code node β Send mail β Update Google Sheets row (βsentβ) - Loop batches until no items remain Normally Iβd use Mailchimp / Mail Relay for this, but in this case the list is scraped from public data, so the client doesnβt want it inside a newsletter tool. Whatβs your experience sending solely through n8n + Workspace?If youβve done this, what timing / batch size worked for you? Thanks!