Java 8 has reached end of support
and will be
deprecated
on January 31, 2026. After deprecation, you won't be able to deploy Java 8
applications, even if your organization previously used an organization policy to
re-enable deployments of legacy runtimes. Your existing Java
8 applications will continue to run and receive traffic after their
deprecation date. We recommend that
you
migrate to the latest supported version of Java.
Receiving Bounce Notification
Stay organized with collections
Save and categorize content based on your preferences.
To receive email bounce notifications, you need to configure your app to
enable bounce notification and you need to handle the incoming notification in
your app.
Configuring your application for email bounce notification
By default, applications do not receive bounce notifications for email that
could not be delivered. To enable the incoming bounce notification service, you
must modify your application appengine-web.xml
and web.xml
configuration
files.
Modify appengine-web.xml
by adding an inbound-services
section to enable the
incoming bounce service:
Modify web.xml
by mapping the bounce URL /_ah/bounce
to your bounce
handling servlet, as follows:
Handling Bounce Notifications
The JavaMail API includes the
BounceNotificationParser class,
which you use to parse incoming bounce notifications, as shown here:
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-08-04 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-04 UTC."],[[["To enable email bounce notifications, you must configure your application to receive them and handle them within your app."],["Enable the incoming bounce notification service by adding the `mail_bounce` service within the `inbound-services` section of your `appengine-web.xml` file."],["Map the bounce URL `/_ah/bounce` to your bounce handling servlet within your `web.xml` file to direct bounce notifications appropriately."],["Use the `BounceNotificationParser` class from the JavaMail API to parse incoming bounce notifications in your application."]]],[]]