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