Question

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?

Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top