#Mass email

3 messages · Page 1 of 1 (latest)

copper wagon
#

What I'm trying to do: make my agent connected to my gmail and send 3,000 emails one by one to my clients.
How?

novel lodgeBOT
#

Short version, I would not use Gmail itself to send 3,000 emails one by one.

Even one-by-one, Gmail still counts them toward sending limits:

Best setup for OpenClaw:

  1. Connect Google account with gog
    gog auth credentials /path/to/client_secret.json
    gog auth add you@company.com --services gmail,sheets
    
  2. Keep your client list in Google Sheets
#
  1. Let the agent generate/personalize each email
  2. Use a real sending provider for delivery, like SES, Resend, Postmark, SendGrid, Mailgun
  3. Add an approval gate before send, using Lobster
    https://docs.openclaw.ai/tools/lobster

If you just want to test Gmail connectivity, start with a single email:

gog gmail send --to client@example.com --subject "Test" --body "Hello"

So the recommendation is:

  • Gmail for low-volume personal mail
  • ESP/API provider for 3,000 sends

If you want, I can sketch the exact workflow for either:

  1. Google Sheets + agent personalization + Resend/SES, or