From 9fa9c64e9e5cbf3fec792faa8708fdd0dd94b30c Mon Sep 17 00:00:00 2001 From: fanta Date: Wed, 12 Feb 2025 19:33:04 +0100 Subject: [PATCH] =?UTF-8?q?test=20notification=20parametro=20a=C3=B1adido?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 ++ cpdAlerts.sh | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/README.md b/README.md index 3439427..6e59dbd 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,8 @@ Vigilancia del boletines oficiales de diferentes comunidades notificationEmails="email@example.es email2@anotherexample.es" +Puedes probar con el parametro --test a mandar un email de ejemplo de como llegarán cuando encuentre algo de las keywords. + ## Nombres de los Boletines Autonómicos * Boletín Oficial de la Junta de Andalucía (BOJA) diff --git a/cpdAlerts.sh b/cpdAlerts.sh index 71907cb..a946977 100755 --- a/cpdAlerts.sh +++ b/cpdAlerts.sh @@ -15,6 +15,12 @@ function sendMail() { echo "He encontrado resultados en $1" | mailx -r alertascpds@56k.es -s "Alertas CPDs - Resultados en $2" $notificationEmails } +function testNotification() { + comunidad="TestLand" + pdfURL="https://ejemplo.com/de/url/que/no/existe.pdf" + sendMail $pdfURL $comunidad +} + function aragon { echo "nada aún realizado. Aquí código para buscar en aragon" comunidad="Aragon" @@ -56,12 +62,14 @@ function help { echo "--barcelona Alertas en Barcelona" echo "--clamancha Alertas en Castilla-La Mancha" echo "--madrid Alertas en Madrid" + echo "--test Test de Notificación Email" echo -e "--help Muesta la ayuda\n" } function checkOpt { if [ -z "$opt" ]; then help; fi if [ "$opt" = "--help" ]; then help; fi + if [ "$opt" = "--test" ]; then testNotification; fi if [ "$opt" = "--aragon" ]; then aragon; fi if [ "$opt" = "--barcelona" ]; then barcelona; fi if [ "$opt" = "--clamancha" ]; then clamancha; fi