Gmail

Filter import available

Gmail 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.

Gmail filter (personalised) Sign in to download a filter pre-filled with your forwarding address
Sign in to download
Gmail requires you to verify the forwarding address before importing the filter. Complete step 1 below first or the forwarding rule won't activate.
  1. Add and verify your forwarding address
    In Gmail: Settings → See all settings → Forwarding and POP/IMAPAdd 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.
  2. 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 FileCreate filters.
  3. 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
  1. In Gmail, click the search bar → Show search options
  2. In the Subject field enter: receipt OR invoice OR "order confirmation" OR "order received" OR "your order"
  3. Click Create filter
  4. Tick Forward it to and select your rct-keep address (must be verified first — see step 1 above)
  5. Click Create filter

Outlook.com

Manual setup

Outlook.com (and the new Outlook desktop app for Windows, which shares the same interface) has no filter import mechanism. Set up a rule manually:

  1. Go to Settings (gear icon) → MailRulesAdd new rule
  2. Name the rule rct-keep receipts
  3. Under Add a condition, choose Subject includes and add terms one at a time: receipt, invoice, order confirmation
  4. Change the condition match to any (so it's OR, not AND)
  5. Under Add an action, choose Forward to and enter your rct-keep address
  6. Click Save

Your rct-keep address is in Settings → Email Forwarding once you're signed in.

Outlook (classic desktop)

Manual setup

Classic Outlook for Windows stores rules in a proprietary binary format that can't be generated externally — setup is manual only:

  1. Go to FileManage Rules & AlertsNew Rule
  2. Choose Apply rule on messages I receiveNext
  3. Tick with specific words in the subject, click specific words and add: receipt, invoice, order confirmation, order received
  4. Click Next, tick forward it to people or public group, click people or public group and enter your rct-keep address
  5. 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 setup

Yahoo Mail has no filter import. Set up forwarding filters manually:

  1. Go to Settings (gear icon) → More settingsFiltersAdd new filters
  2. Name the filter rct-keep receipts
  3. Set condition: Subjectcontainsreceipt
  4. Set action: Forward to → enter your rct-keep address
  5. 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 available

Fastmail supports Sieve, a standard mail filtering language. Paste the script below into the Sieve editor, replacing [email protected] with your actual address from Settings.

  1. Go to SettingsFilters & RulesEdit custom sieve rules
  2. 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
  1. Go to SettingsFilters & RulesAdd a new rule
  2. Condition: Subjectcontainsreceipt
  3. Action: Redirect to → your rct-keep address
  4. Save, then add separate rules for invoice, order confirmation, etc.

Apple Mail

Manual setup

Apple 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.

  1. Open Mail → Settings (or Preferences) → RulesAdd Rule
  2. Description: rct-keep receipts
  3. Condition: Any of the following are true → Subjectcontainsreceipt
  4. Add more conditions for invoice, order confirmation, etc.
  5. Action: Forward Message → your rct-keep address
  6. 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, or order 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.