Email forwarding setup
Forward receipt emails to your personal rct-keep address and they'll be parsed and stored automatically. Each account gets a unique address — find yours in Settings once you're signed in.
Jump to your provider
Gmail
Filter import availableGmail lets you import filters as an XML file. When you're signed in, rct-keep can generate a personalised filter file pre-configured with your forwarding address. Download it from Settings → Email Forwarding, then import it into Gmail.
-
Add and verify your forwarding address
In Gmail: Settings → See all settings → Forwarding and POP/IMAP → Add a forwarding address → enter your rct-keep address (found in Settings).
Gmail sends a verification email to that address. It will arrive in rct-keep as a receipt — open it from your Receipts list, find the confirmation code in the extracted text, and paste it back into Gmail. -
Import the filter
Download the filter from Settings → Email Forwarding. Then in Gmail: Settings → Filters and Blocked Addresses → scroll to the bottom → Import filters → choose the downloaded file → Open File → Create filters. - Done. The filter matches emails with receipt, invoice, order confirmation, and similar subjects. You can edit it in Gmail's filter list to add more senders or terms.
Set up manually instead
- In Gmail, click the search bar → Show search options
- In the Subject field enter:
receipt OR invoice OR "order confirmation" OR "order received" OR "your order" - Click Create filter
- Tick Forward it to and select your rct-keep address (must be verified first — see step 1 above)
- Click Create filter
Outlook.com
Manual setupOutlook.com (and the new Outlook desktop app for Windows, which shares the same interface) has no filter import mechanism. Set up a rule manually:
- Go to Settings (gear icon) → Mail → Rules → Add new rule
- Name the rule rct-keep receipts
- Under Add a condition, choose Subject includes and add terms one at a time:
receipt,invoice,order confirmation - Change the condition match to any (so it's OR, not AND)
- Under Add an action, choose Forward to and enter your rct-keep address
- Click Save
Your rct-keep address is in Settings → Email Forwarding once you're signed in.
Outlook (classic desktop)
Manual setupClassic Outlook for Windows stores rules in a proprietary binary format that can't be generated externally — setup is manual only:
- Go to File → Manage Rules & Alerts → New Rule
- Choose Apply rule on messages I receive → Next
- Tick with specific words in the subject, click specific words and add:
receipt,invoice,order confirmation,order received - Click Next, tick forward it to people or public group, click people or public group and enter your rct-keep address
- Click Next through exceptions, name the rule, click Finish
If you're using new Outlook for Windows (2024 onwards), follow the Outlook.com instructions above — it's the same interface.
Yahoo Mail
Manual setupYahoo Mail has no filter import. Set up forwarding filters manually:
- Go to Settings (gear icon) → More settings → Filters → Add new filters
- Name the filter rct-keep receipts
- Set condition: Subject → contains →
receipt - Set action: Forward to → enter your rct-keep address
- Click Save
Yahoo filters support one condition per rule. Create separate rules for invoice, order confirmation, etc. if you want broader matching.
Fastmail
Sieve script availableFastmail supports Sieve, a standard mail filtering language. Paste the script below into the Sieve editor, replacing [email protected] with your actual address from Settings.
- Go to Settings → Filters & Rules → Edit custom sieve rules
- Paste the following (or append it to existing rules), replacing the address:
require ["copy", "fileinto", "imap4flags"];
if anyof (
header :contains "subject" ["receipt", "invoice",
"order confirmation", "order received",
"your order", "payment confirmation",
"purchase confirmation"]
) {
redirect :copy "[email protected]";
}
The :copy flag forwards a copy and leaves the email in your inbox. Remove :copy to forward-only (skips inbox). This Sieve script also works on ProtonMail and any other Sieve-enabled provider.
Set up with the filter UI instead
- Go to Settings → Filters & Rules → Add a new rule
- Condition: Subject → contains →
receipt - Action: Redirect to → your rct-keep address
- Save, then add separate rules for
invoice,order confirmation, etc.
Apple Mail
Manual setupApple Mail rules run locally on your Mac and only fire when Mail is open. For reliable capture, set up forwarding at the provider level (iCloud web, Gmail, etc.) instead.
- Open Mail → Settings (or Preferences) → Rules → Add Rule
- Description: rct-keep receipts
- Condition: Any of the following are true → Subject → contains →
receipt - Add more conditions for
invoice,order confirmation, etc. - Action: Forward Message → your rct-keep address
- Click OK
Rules only run while Mail is open. If you want receipts captured even when your Mac is off, set up the rule in your email provider's web interface instead.
Other providers / manual forwarding
Any email client that supports forwarding rules will work. The pattern is always the same:
- Condition: subject contains
receipt,invoice, ororder confirmation - Action: forward to your rct-keep address (found in Settings)
You can also forward emails manually at any time — just forward them to your rct-keep address and they'll be picked up within seconds.
If your provider supports Sieve (common on self-hosted mail, ProtonMail, and many IMAP servers), use the Fastmail Sieve script above — it's a standard and works anywhere Sieve is supported.