Cómo recibir notificaciones de rebote
bookmark_borderbookmark
Organiza tus páginas con colecciones
Guarda y categoriza el contenido según tus preferencias.
Si deseas recibir notificaciones de rebote de correo electrónico, debes configurar tu app para habilitar las notificaciones de rebote y administrar las notificaciones entrantes en la app.
Configura tu aplicación para las notificaciones de rebote de correo electrónico
Según la configuración predeterminada, las aplicaciones no reciben notificaciones de rebote de correos electrónicos que no pudieron entregarse. Para habilitar el servicio de notificación de rebote entrante, debes modificar los archivos de configuración appengine-web.xml
y web.xml
de la aplicación.
Para modificar appengine-web.xml
, agrega la sección inbound-services
a fin de habilitar el servicio de rebote entrante:
Para modificar web.xml
, mapea la URL de rebote /_ah/bounce
al servlet de control de rebote de la siguiente manera:
Maneja las notificaciones de rebote
La API de JavaMail incluye la clase BounceNotificationParser, que usas para analizar notificaciones de rebote entrantes, como se muestra aquí:
Salvo que se indique lo contrario, el contenido de esta página está sujeto a la licencia Atribución 4.0 de Creative Commons, y los ejemplos de código están sujetos a la licencia Apache 2.0. Para obtener más información, consulta las políticas del sitio de Google Developers. Java es una marca registrada de Oracle o sus afiliados.
Última actualización: 2025-03-06 (UTC)
[[["Fácil de comprender","easyToUnderstand","thumb-up"],["Resolvió mi problema","solvedMyProblem","thumb-up"],["Otro","otherUp","thumb-up"]],[["Difícil de entender","hardToUnderstand","thumb-down"],["Información o código de muestra incorrectos","incorrectInformationOrSampleCode","thumb-down"],["Faltan la información o los ejemplos que necesito","missingTheInformationSamplesINeed","thumb-down"],["Problema de traducción","translationIssue","thumb-down"],["Otro","otherDown","thumb-down"]],["Última actualización: 2025-03-06 (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."]]],[]]