惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

N
Netflix TechBlog - Medium
I
InfoQ
Engineering at Meta
Engineering at Meta
Jina AI
Jina AI
Recent Announcements
Recent Announcements
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
D
Docker
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
GbyAI
GbyAI
博客园 - Franky
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog RSS Feed
WordPress大学
WordPress大学
MyScale Blog
MyScale Blog
月光博客
月光博客
罗磊的独立博客

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Automate Your Email Inbox With Python: 5 Scripts That Act...
Brad · 2026-05-14 · via DEV Community

Brad

Most people spend 2-3 hours per day on email. Python can cut that to 30 minutes.

Here are 5 email automation scripts that work in production — not toy examples.

1. Smart Email Sorter (Zero Inbox in Seconds)

import imaplib
import email

def smart_sort_inbox(rules):
    """
    Automatically sort emails based on custom rules.
    rules = [
        {'from_contains': 'newsletter', 'action': 'archive', 'label': 'Newsletters'},
        {'subject_contains': 'invoice', 'action': 'label', 'label': 'Finance'},
    ]
    """
    mail = imaplib.IMAP4_SSL('imap.gmail.com')
    mail.login('your@email.com', 'app_password')
    mail.select('INBOX')

    _, message_numbers = mail.search(None, 'UNSEEN')

    sorted_count = {}
    for num in message_numbers[0].split():
        _, msg_data = mail.fetch(num, '(RFC822)')
        msg = email.message_from_bytes(msg_data[0][1])

        sender = str(msg.get('From', '')).lower()
        subject = str(msg.get('Subject', '')).lower()

        for rule in rules:
            matched = False
            if 'from_contains' in rule and rule['from_contains'] in sender:
                matched = True
            if 'subject_contains' in rule and rule['subject_contains'] in subject:
                matched = True

            if matched:
                label = rule['label']
                sorted_count[label] = sorted_count.get(label, 0) + 1
                mail.copy(num, label)
                if rule['action'] == 'archive':
                    mail.store(num, '+FLAGS', '\\Deleted')
                break

    mail.expunge()
    mail.close()
    return sorted_count

Enter fullscreen mode Exit fullscreen mode

Time saved: 45 minutes/week.

2. Auto-Reply to Common Questions

Every business gets the same 10 questions repeatedly. Automate the responses:

import re
from typing import Optional

FAQ_RESPONSES = {
    r'(pricing|cost|how much|price|rates)': """
Hi {name},

Thanks for reaching out! Our pricing starts at $99/month.
I'll follow up with more details. What's your use case?

Best, {signature}
""",
    r'(refund|money back|cancel)': """
Hi {name},

We have a 30-day money-back guarantee, no questions asked.
Reply with your order number to process a refund.

Best, {signature}
"""
}

def get_auto_reply(subject: str, body: str, sender_name: str) -> Optional[str]:
    combined = f"{subject} {body}".lower()
    for pattern, response in FAQ_RESPONSES.items():
        if re.search(pattern, combined):
            return response.format(name=sender_name, signature="Your Name")
    return None

Enter fullscreen mode Exit fullscreen mode

Result: 80% fewer manual replies needed.

3. Follow-Up Sequence Automation

Never forget to follow up again:

import sqlite3
from datetime import datetime, timedelta

class FollowUpManager:
    def __init__(self, db_path='followups.db'):
        self.db = sqlite3.connect(db_path)
        self._init_db()

    def _init_db(self):
        self.db.execute('''
            CREATE TABLE IF NOT EXISTS followups (
                id INTEGER PRIMARY KEY,
                email TEXT, name TEXT, context TEXT,
                sequence_step INTEGER DEFAULT 0,
                next_followup TIMESTAMP,
                status TEXT DEFAULT 'active'
            )
        ''')
        self.db.commit()

    def add_followup(self, email, name, context):
        """Start a 3-touch follow-up sequence: Day 3, Day 7, Day 14"""
        self.db.execute(
            'INSERT INTO followups (email, name, context, next_followup) VALUES (?, ?, ?, ?)',
            (email, name, context, (datetime.now() + timedelta(days=3)).isoformat())
        )
        self.db.commit()

    def get_due_followups(self):
        cursor = self.db.execute(
            'SELECT * FROM followups WHERE next_followup <= ? AND status = ? AND sequence_step < 3',
            (datetime.now().isoformat(), 'active')
        )
        return cursor.fetchall()

Enter fullscreen mode Exit fullscreen mode

Time saved: 30 minutes/week. Conversion rate improvement: significant.

4. Email Analytics Without Paying for Tools

import imaplib
import email
from collections import defaultdict
from datetime import datetime, timedelta

def get_email_analytics(days_back=30):
    mail = imaplib.IMAP4_SSL('imap.gmail.com')
    mail.login('your@email.com', 'app_password')
    mail.select('INBOX')

    stats = {
        'total_received': 0,
        'by_sender_domain': defaultdict(int),
        'by_hour': defaultdict(int),
        'top_senders': defaultdict(int),
    }

    since_date = (datetime.now() - timedelta(days=days_back)).strftime('%d-%b-%Y')
    _, nums = mail.search(None, f'SINCE {since_date}')

    for num in nums[0].split():
        _, data = mail.fetch(num, '(RFC822.HEADER)')
        msg = email.message_from_bytes(data[0][1])

        sender = str(msg.get('From', ''))
        domain = sender.split('@')[-1].replace('>', '').strip() if '@' in sender else 'unknown'

        stats['total_received'] += 1
        stats['by_sender_domain'][domain] += 1
        stats['top_senders'][sender] += 1

    stats['top_senders'] = sorted(stats['top_senders'].items(), key=lambda x: x[1], reverse=True)[:10]
    return stats

Enter fullscreen mode Exit fullscreen mode

5. Unsubscribe Bot

import re
from collections import defaultdict

def find_unsubscribe_links(mail_client, max_emails=100):
    """Find all unsubscribe links in your inbox."""
    _, nums = mail_client.search(None, 'ALL')
    nums = nums[0].split()[-max_emails:]

    unsubscribe_map = defaultdict(list)

    for num in nums:
        _, data = mail_client.fetch(num, '(RFC822)')
        msg = email.message_from_bytes(data[0][1])
        sender = str(msg.get('From', ''))

        body = ''
        if msg.is_multipart():
            for part in msg.walk():
                if part.get_content_type() == 'text/html':
                    body = str(part.get_payload(decode=True))
                    break

        links = re.findall(r'href=[\'"]([^\'"]*unsubscribe[^\'"]*)[\'"]', 
                          body, re.IGNORECASE)
        if links:
            unsubscribe_map[sender].extend(links)

    return unsubscribe_map

Enter fullscreen mode Exit fullscreen mode

The Result

Set these 5 scripts up once. Then your inbox practically runs itself. Five scripts, one weekend of setup, years of saved time.

Want 42 more scripts for invoicing, client reporting, social media scheduling, inventory tracking, and business metrics? It's all in the Python Business Automation Toolkit: https://lukassbrad.gumroad.com/l/ugeka