FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Built a tool to auto-reply to emails. Now I reply to spam faster than real people.
NewsProgramming Languages

Built a tool to auto-reply to emails. Now I reply to spam faster than real people.

via Dev.toNico Reyes3h ago

Built a tool to auto reply to emails. Now I reply to spam faster than real people. Was getting 30 cold emails a day minimum. Recruiters, sales pitches, people asking if I want to buy their course. Started replying manually with "not interested" but that ate 20 minutes every morning. Thought hey I can automate this. Version 1 was embarrassingly simple Wrote a Python script that checked my Gmail every 5 minutes and sent "Thanks but not interested" to anything with keywords like "opportunity" or "partnership" in the subject. import imaplib import smtplib from email.mime.text import MIMEText imap = imaplib . IMAP4_SSL ( ' imap.gmail.com ' ) imap . login ( ' user@gmail.com ' , ' password ' ) imap . select ( ' INBOX ' ) status , messages = imap . search ( None , ' UNSEEN SUBJECT " opportunity "' ) for num in messages [ 0 ]. split (): msg = MIMEText ( ' Thanks but not interested ' ) msg [ ' Subject ' ] = ' Re: ... ' smtp = smtplib . SMTP ( ' smtp.gmail.com ' , 587 ) smtp . sendmail ( ' user@g

Continue reading on Dev.to

Opens in a new tab

Read Full Article
5 views

Related Articles

Why You Start Projects but Never Finish Them
News

Why You Start Projects but Never Finish Them

Medium Programming • 2h ago

FedEx chooses partnerships over proprietary tech for its automation strategy
News

FedEx chooses partnerships over proprietary tech for its automation strategy

TechCrunch • 2h ago

News

Software You Can Love 2026 tickets are on sale

Lobsters • 2h ago

The Subprime Technical Debt Crisis
News

The Subprime Technical Debt Crisis

Lobsters • 3h ago

“It Worked on My Machine” — Until It Reached Production
News

“It Worked on My Machine” — Until It Reached Production

Medium Programming • 3h ago

Discover More Articles