1

Trying to put together this:

Trigger Google Apps Script by email

with this:

Custom Incoming Mail Domain With Google App Engine

So that ultimately we can process emails to a scalable inbox @ourgoogleappsdomain.com. Google apps accounts slap a limit of 10,000 a day, which way doesn't work for us. Services that seem to supply this feature, just not at the scale we need, include:

  1. http://mailnuggets.com
  2. http://www.mailhooks.com
  3. http://www.email2http.net

So yes - trying to see what we can do to avoid rolling our own mail server here.

Community
  • 1
  • 1
djechlin
  • 59,258
  • 35
  • 162
  • 290

1 Answers1

1

You need to configure Google Apps to route incoming messages to that address to a separate SMTP server (split delivery).

You can then use any third-party SMTP server to receive your messages and run your code (typically by sending HTTP POST requests)

The following services can be used to receive large mail volumes:

SLaks
  • 868,454
  • 176
  • 1,908
  • 1,964