I’m using the SendGrid Parse API to accept emails from users at ANYTHING@example.com, but I want to also be able to receive emails to Google Apps at support@example.com. Is this possible, and if so, how?
I’m using the SendGrid Parse API to accept emails from users at ANYTHING@example.com, but
Share
It’s not really possible but you have a few options. You could have some code in your parse API callback that forwards emails that match certain rules to a different address (you’d have to rebuild the messages from the parsed values), or you could add a subdomain with a different MX record and use that for either support or parsing but not both.