Files
gmail-automation-rpa/config.json.example
gahusb c23da42ca7 Initial commit: Gmail Automation RPA
Gmail API를 활용한 이메일 자동화 RPA 프로그램

Features:
- Gmail API 인증 및 연동
- 키워드/발신자 기반 자동 분류
- 조건별 자동 답장 기능
- 통계 리포트 생성
- 커스터마이징 가능한 JSON 설정

Modules:
- gmail_automation.py: 메인 프로그램
- gmail_auth.py: Gmail API 인증
- email_classifier.py: 이메일 분류 로직
- auto_reply.py: 자동 답장 로직
- config.json.example: 설정 예시

Documentation:
- 상세한 README.md (설치, 사용법, 트러블슈팅)
- Google Cloud Console 설정 가이드
- 실제 효과 측정 데이터
2026-02-10 03:52:48 +09:00

48 lines
1.4 KiB
JSON

{
"classification_rules": [
{
"name": "업무",
"keywords": ["회의", "프로젝트", "업무", "보고", "문의"],
"from_domains": ["company.com", "work.com"],
"label": "업무/중요",
"priority": "high"
},
{
"name": "마케팅",
"keywords": ["광고", "프로모션", "할인", "무료", "이벤트"],
"label": "마케팅",
"priority": "low"
},
{
"name": "개인",
"keywords": ["안녕", "친구", "가족"],
"from_domains": ["gmail.com", "naver.com", "daum.net"],
"label": "개인"
},
{
"name": "고객 문의",
"keywords": ["견적", "가격", "비용", "문의", "도움"],
"label": "고객 문의",
"priority": "high"
}
],
"auto_reply_rules": [
{
"condition": "업무 시간 외",
"hours": {
"start": 18,
"end": 9
},
"template": "안녕하세요.\n\n현재 업무 시간 외입니다.\n다음 영업일(평일 09:00~18:00)에 확인 후 답변드리겠습니다.\n\n감사합니다."
},
{
"condition": "키워드 기반",
"keywords": ["견적", "가격", "비용"],
"template": "견적 문의 감사합니다.\n\n상세한 견적은 검토 후 24시간 내 이메일로 보내드리겠습니다.\n\n포트폴리오: https://jaengseung-made.com\n\n감사합니다."
}
],
"max_emails": 50,
"enable_auto_reply": true,
"enable_classification": true
}