Email Reply Reader
Reads Gmail inbox, finds job application replies, and classifies each response.
Prerequisites
INLINECODE0 authenticated with Gmail:
CODEBLOCK0
When to Activate
- - "查一下有没有回复"、"check my job application replies"
- "有哪些公司回复了"、"did anyone respond to my resume"
- "看看招聘邮件"、"read recruiter emails"
Workflow
Step 1: Search for application-related emails
CODEBLOCK1
Also search for sent mail to cross-reference:
CODEBLOCK2
Step 2: Classify each reply
For each email found, classify it into one of these categories:
| Category | Signals | Next Action |
|---|
| 🟢 Interview Invite | "schedule", "interview", "call", "meet", "availability", "slot" | Reply to confirm ASAP |
| 🔵 Positive Interest |
"impressed", "interested", "shortlisted", "next steps", "team" | Respond within 24h |
| 🟡
Request for Info | "portfolio", "references", "salary", "notice period", "assessment" | Prepare and reply |
| 🟠
Recruiter Outreach | "exciting opportunity", "your profile", "perfect fit" (unsolicited) | Evaluate if relevant |
| 🔴
Rejection | "unfortunately", "not moving forward", "other candidates", "not a fit" | Log and move on |
| ⚪
Auto-reply / No Info | "thank you for applying", "received your application", generic acknowledgement | Wait for real reply |
| ❓
Unclear | Hard to classify | Read full email for context |
Step 3: Output structured summary
Present results in this format:
CODEBLOCK3
Step 4: Offer to draft reply
For interview invites or positive replies, offer to draft a response:
Interview confirmation template:
CODEBLOCK4
Rejection acknowledgement (optional — keeps door open):
CODEBLOCK5
Reading Full Email Content
To read the full body of a specific email:
CODEBLOCK6
Follow-up Reminder Logic
For applications with no reply after 7 days, suggest a follow-up:
CODEBLOCK7
Follow-up template:
CODEBLOCK8
邮件回复阅读器
读取Gmail收件箱,查找求职申请回复,并对每封回复进行分类。
前置条件
gog 已通过Gmail认证:
bash
gog auth add you@gmail.com --services gmail
触发条件
- - 查一下有没有回复、check my job application replies
- 有哪些公司回复了、did anyone respond to my resume
- 看看招聘邮件、read recruiter emails
工作流程
步骤1:搜索与申请相关的邮件
bash
搜索最近30天内的回复
gog gmail messages search in:inbox (interview OR application OR resume OR opportunity OR position OR role OR job) newer_than:30d \
--max 50 \
--account you@gmail.com \
--json
同时搜索已发送邮件以交叉比对:
bash
gog gmail messages search in:sent (application OR resume OR apply) newer_than:30d \
--max 50 \
--account you@gmail.com \
--json
步骤2:对每封回复进行分类
对找到的每封邮件,将其归入以下类别之一:
| 类别 | 信号词 | 下一步操作 |
|---|
| 🟢 面试邀请 | schedule, interview, call, meet, availability, slot | 尽快回复确认 |
| 🔵 积极关注 |
impressed, interested, shortlisted, next steps, team | 24小时内回复 |
| 🟡
信息请求 | portfolio, references, salary, notice period, assessment | 准备并回复 |
| 🟠
招聘方主动联系 | exciting opportunity, your profile, perfect fit(非主动投递) | 评估是否相关 |
| 🔴
拒绝通知 | unfortunately, not moving forward, other candidates, not a fit | 记录并继续 |
| ⚪
自动回复/无实质信息 | thank you for applying, received your application, 通用确认 | 等待真正回复 |
| ❓
不明确 | 难以分类 | 阅读完整邮件以获取上下文 |
步骤3:输出结构化摘要
按以下格式呈现结果:
📬 求职申请回复 — 最近30天
找到 [N] 封相关邮件,来自 [N] 家公司
🟢 面试邀请 ([N])
━━━━━━━━━━━━━━━━━━━━━━━━
• [公司名称] — [职位]
发件人:[发件人姓名] <邮箱>
日期:[日期]
摘要:[邮件中的关键句子]
⚡ 操作:回复确认面试时间
🔵 积极关注 ([N])
━━━━━━━━━━━━━━━━━━━━━━━━
• [公司名称] — [职位]
发件人:[发件人]
日期:[日期]
摘要:[关键句子]
⚡ 操作:24小时内回复
🟡 信息请求 ([N])
━━━━━━━━━━━━━━━━━━━━━━━━
• [公司名称] — [职位]
需要提供:[作品集/薪资期望/推荐人]
⚡ 操作:准备并回复
🔴 拒绝通知 ([N])
━━━━━━━━━━━━━━━━━━
• [公司名称] — [职位] (日期:[日期])
⚪ 自动回复/待处理 ([N])
━━━━━━━━━━━━━━━━━━━━━━━━━━━━
• [公司名称] — 申请日期 [日期],尚未收到人工回复
────────────────────────────────
⚡ 优先操作:
- 1. [最紧急的操作]
- [第二操作]
- [第三操作]
步骤4:提供草拟回复
对于面试邀请或积极回复,主动提供草拟回复:
面试确认模板:
您好 [姓名],
感谢您的来信!我非常期待有机会参加 [公司名称] 的 [职位名称] 面试。
我可以在以下时间参加面试:
- - [选项1:星期,日期,时间 + 时区]
- [选项2:星期,日期,时间 + 时区]
- [选项3:星期,日期,时间 + 时区]
请告知哪个时间最适合您的团队,或者如有需要,您也可以建议其他时间。
期待与您交流!
此致
敬礼
[姓名]
拒绝确认(可选 — 保持联系):
您好 [姓名],
感谢您告知我结果。虽然有些遗憾,但我很感谢您抽出时间跟进。
我仍然非常欣赏 [公司名称],并希望未来有更合适的职位时能有机会被考虑。
此致
敬礼
[姓名]
阅读完整邮件内容
要阅读特定邮件的完整正文:
bash
获取邮件线程详情(使用搜索结果中的线程ID)
gog gmail search from:company.com --max 5 --account you@gmail.com --json
跟进提醒逻辑
对于超过7天未回复的申请,建议进行跟进:
⏰ 跟进建议(超过7天未回复):
• [公司名称] — 已申请 [N] 天
草拟礼貌的跟进邮件?[是/否]
跟进模板:
主题:跟进 — [职位名称] 申请
您好 [姓名/招聘经理],
我想跟进一下我于 [日期] 提交的 [职位名称] 职位申请。我仍然对这个机会非常感兴趣,并希望了解后续步骤。
如果您需要任何额外信息,请随时告知。
感谢您的时间。
此致
敬礼
[姓名]