Rule Performance
OmyPost's rule engine helps you automate email management efficiently:
Rule Types
Inbox Organization
Automatically organize incoming emails:
- Move to folders
- Apply labels
- Set priority
- Mark as read/unread
Security Rules
Protect your inbox with security rules:
- Spam filtering
- Phishing detection
- Malware scanning
- Domain verification
Auto-Response
Set up automatic responses:
- Out-of-office replies
- Auto-acknowledgment
- Follow-up reminders
- Custom templates
Rule Examples
if (subject.contains("newsletter") || from.contains("marketing")) {
moveTo("Marketing");
applyLabel("Newsletter");
}
if (subject.contains("support") || body.contains("help")) {
sendAutoReply("support_template");
setPriority("high");
}
Best Practices
- Start with basic rules and gradually add complexity
- Test rules before applying them to all emails
- Regularly review and update rules
- Combine multiple conditions for better accuracy
- Use templates for common rule patterns
- Monitor rule performance and adjust as needed