I set up a bunch of routes in my new google apps system (migrating from doing inbound email with mailgun forwarding).
In one case we need to forward all email with a particular subject to another address, but it's not clear how to do that in google apps.
https://support.google.com/a/answer/2368153?hl=en
in mailgun, i can do
match_header("subject", "cancel")
with
forward("me@example.com")
but in google apps, it seems like i can only do recipient based routing.
Is there any work around for this?