Google App Engine - receiving email in a specific version

I am currently using this service to receive email in my application:

https://developers.google.com/appengine/docs/java/mail/receiving

The list indicates that the letter used is:

string@appid.appspotmail.com

But can you target a specific version? Maybe something like:

string@appid-dot-version.appspotmail.com => (mail delivery error)

It is really problematic to only test this functionality on a real site without testing it first.

+3


source to share


1 answer


Sorry, you can't. The doc you linked says:

Mail servlets run in a default module (or application version).



You can open the PIT Feature Request to add this functionality.

As a workaround, perhaps you can add a template to the target. those. in your web.xml add a filter to send all mail sent to "APP_V_DEV" using another class.

+1


source







All Articles