test notification parametro añadido

main
fanta 2 months ago
parent 1d9cfb268f
commit 9fa9c64e9e

@ -20,6 +20,8 @@ Vigilancia del boletines oficiales de diferentes comunidades
notificationEmails="email@example.es email2@anotherexample.es" notificationEmails="email@example.es email2@anotherexample.es"
</pre> </pre>
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 ## Nombres de los Boletines Autonómicos
* Boletín Oficial de la Junta de Andalucía (BOJA) * Boletín Oficial de la Junta de Andalucía (BOJA)

@ -15,6 +15,12 @@ function sendMail() {
echo "He encontrado resultados en $1" | mailx -r alertascpds@56k.es -s "Alertas CPDs - Resultados en $2" $notificationEmails 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 { function aragon {
echo "nada aún realizado. Aquí código para buscar en aragon" echo "nada aún realizado. Aquí código para buscar en aragon"
comunidad="Aragon" comunidad="Aragon"
@ -56,12 +62,14 @@ function help {
echo "--barcelona Alertas en Barcelona" echo "--barcelona Alertas en Barcelona"
echo "--clamancha Alertas en Castilla-La Mancha" echo "--clamancha Alertas en Castilla-La Mancha"
echo "--madrid Alertas en Madrid" echo "--madrid Alertas en Madrid"
echo "--test Test de Notificación Email"
echo -e "--help Muesta la ayuda\n" echo -e "--help Muesta la ayuda\n"
} }
function checkOpt { function checkOpt {
if [ -z "$opt" ]; then help; fi if [ -z "$opt" ]; then help; fi
if [ "$opt" = "--help" ]; then help; fi if [ "$opt" = "--help" ]; then help; fi
if [ "$opt" = "--test" ]; then testNotification; fi
if [ "$opt" = "--aragon" ]; then aragon; fi if [ "$opt" = "--aragon" ]; then aragon; fi
if [ "$opt" = "--barcelona" ]; then barcelona; fi if [ "$opt" = "--barcelona" ]; then barcelona; fi
if [ "$opt" = "--clamancha" ]; then clamancha; fi if [ "$opt" = "--clamancha" ]; then clamancha; fi

Loading…
Cancel
Save