Skip to content

Collaborando di Domenica 12/04/2026

Reader Evangelizo Error : wrong param « date » !! Must be less than 30 days from today ...

NAME

« Reader Evangelizo »

SYNOPSIS

http://feed.evangelizo.org/v2/reader.php [params...]

RETURN VALUE

The « Reader Evangelizo » script return a string with the content requested by "type" parameter
The returned string will be encoded as following :
  • UTF-8: for any param "lang"

DESCRIPTION

This manual page documents the « Reader Feed v2.0 » for EVANGELIZO.ORG.
With the « Reader Evangelizo » you can get all texts provided by evangelizo.org web service. The « Reader Evangelizo » will help you to display daily reading in your website, or saint of the day .. etc
The « Reader Evangelizo » is used as any PHP file on a website, with params like : file.php?param1=1&param2=2

PARAMETERS

Usage : http://feed.evangelizo.org/v2/reader.php?param1=«value1»&param2=«value2»br />
date Must be formatted like YYYYMMDD. Can not exceed 30 days from today.

type Inform about what you want to get
                    - « saint » : to get the saint of the day (with link to life)
                    - « feast » : to get the feast of the day, if there is one (with link to explanation)
                    - « liturgic_t » : to get the liturgic title
                    - « reading_lt » : to get the long title of the reading
                    - « reading_st » : to get the short title of the reading
                    - « reading » : to get the text of the reading
                    - « audio » : to get the URL of audio file if exist
                    - « all » : to get all the readings of the day
                    - « comment_t » : to get the title of the commentary
                    - « comment_a » : to get the author of the commentary
                    - « comment_s » : to get the source of the commentary
                    - « comment » : to get the text of the commentary
                    - « xml » : to get all infos of the day in XML format

lang Tells the language to display and the liturgical calendar to use
          for Roman Ordinary Calendar :
                    - « AM » : for american-us language and Roman Ordinary Calendar
                    - « AR » : for arabic language and Roman Ordinary Calendar
                    - « DE » : for german language and Roman Ordinary Calendar
                    - « FR » : for french language and Roman Ordinary Calendar
                    - « GR » : for greek (hellenic) language and Roman Ordinary Calendar
                    - « IT » : for italian language and Roman Ordinary Calendar
                    - « MG » : for malagasy language and Roman Ordinary Calendar
                    - « NL » : for dutch language and Roman Ordinary Calendar
                    - « PL » : for polish language and Roman Ordinary Calendar
                    - « PT » : for portuges language and Roman Ordinary Calendar
                    - « SP » : for spanish language and Roman Ordinary Calendar
          for other catholics calendars forms :
                    - « ARM » : for armenian language and armenian calendar
                    - « BYA » : for arabic language and byzantine calendar
                    - « COA » : for arabic language and copte calendar
                    - « MAA » : for arabic language and maronite calendar
                    - « SYA » : for arabic language and syriac calendar
                    - « TRA » : for american-us language and Roman extraordinary calendar
                    - « TRD » : for german language and Roman extraordinary calendar
                    - « TRF » : for french language and Roman extraordinary calendar
                    - « TRS » : for spanish language and Roman extraordinary calendar

content Tells the lecture you want to get
          for Roman calendar Ordinary form :
                    - « FR » : for the first lecture
                    - « PS » : for the psalm
                    - « SR » : for the second lecture
                    - « GSP » : for the gospel
          for other catholics calendars forms :
                    - « EP » : for the epistle
                    - « GSP » : for the gospel

EXAMPLES

    type date lang content url example
To get the saint of a day   saint yyyymmdd Ordinary forms
AM, AR, DE, FR,
GR, IT, NL, PL,
PT, SP


Other forms
ARM, BYA, MAA,
TRF, TRA
Ordinary forms
 FR,PS,SR,GSP



Other forms
EP,GSP
http://feed.evangelizo.org/v2/reader.php?date=20190427&type=saint&lang=IT
To get the feast of a day   feast http://feed.evangelizo.org/v2/reader.php?date=20190427&type=feast&lang=AM
To get the liturgic title of a day  all  liturgic_t http://feed.evangelizo.org/v2/reader.php?date=20190427&type=liturgic_t&lang=FR
To get the long reading title of a day reading_lt http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading_lt&lang=SP&content=FR
To get the short reading title of a day reading_st http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading_st&lang=TRF&content=EP
To get the text of the reading of a day reading http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading&lang=DE&content=GSP
To get the commentary title of a day   comment_t http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_t&lang=PT
To get the commentary author of a day   comment_a http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_a&lang=FR
To get the commentary source of a day   comment_s http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_s&lang=PL
To get the commentary text of a day   comment http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment&lang=MAA


PHP example
   $today = date('Ymd');
   $url = "http://feed.evangelizo.org/v2/reader.php?date=$today&type=comment&lang=FR";
   $h = fopen($url,"r");
   while (!feof($h)) {
     $str .= fgets($h);
   }
   print $str;


Javascript example 1

   <html>
   <head>
     <title>Exemple d'affichage de fichier texte</title>
     <script language="javascript" type="text/javascript">
       function displayTextFile(filePath){
         iframe = document.getElementsByName('textDisplay')[0];
         iframe.src=filePath;
         iframe.style.display="block";
       }
     </script>
   </head>
   <body>
     <iframe id="textDisplay" name="textDisplay" src="" style="width: 400px; height: 240px; display: none;"></iframe>
     <script>
       var currentTime = new Date();
       var month = currentTime.getMonth() + 1;
       var day = currentTime.getDate();
       var year = currentTime.getFullYear();
       if (day < 10) day = '0'+day;
       if (month < 10) month = '0'+month;
       displayTextFile('http://feed.evangelizo.org/v2/reader.php?date='+year+month+day+'&type=reading&lang=FR&content=GSP');
     </script>
   </body>
   </html>





Test it online !

What: Date: Lang: Content (optional):




Reader Evangelizo Error : wrong param « date » !! Must be less than 30 days from today ...

NAME

« Reader Evangelizo »

SYNOPSIS

http://feed.evangelizo.org/v2/reader.php [params...]

RETURN VALUE

The « Reader Evangelizo » script return a string with the content requested by "type" parameter
The returned string will be encoded as following :
  • UTF-8: for any param "lang"

DESCRIPTION

This manual page documents the « Reader Feed v2.0 » for EVANGELIZO.ORG.
With the « Reader Evangelizo » you can get all texts provided by evangelizo.org web service. The « Reader Evangelizo » will help you to display daily reading in your website, or saint of the day .. etc
The « Reader Evangelizo » is used as any PHP file on a website, with params like : file.php?param1=1&param2=2

PARAMETERS

Usage : http://feed.evangelizo.org/v2/reader.php?param1=«value1»&param2=«value2»br />
date Must be formatted like YYYYMMDD. Can not exceed 30 days from today.

type Inform about what you want to get
                    - « saint » : to get the saint of the day (with link to life)
                    - « feast » : to get the feast of the day, if there is one (with link to explanation)
                    - « liturgic_t » : to get the liturgic title
                    - « reading_lt » : to get the long title of the reading
                    - « reading_st » : to get the short title of the reading
                    - « reading » : to get the text of the reading
                    - « audio » : to get the URL of audio file if exist
                    - « all » : to get all the readings of the day
                    - « comment_t » : to get the title of the commentary
                    - « comment_a » : to get the author of the commentary
                    - « comment_s » : to get the source of the commentary
                    - « comment » : to get the text of the commentary
                    - « xml » : to get all infos of the day in XML format

lang Tells the language to display and the liturgical calendar to use
          for Roman Ordinary Calendar :
                    - « AM » : for american-us language and Roman Ordinary Calendar
                    - « AR » : for arabic language and Roman Ordinary Calendar
                    - « DE » : for german language and Roman Ordinary Calendar
                    - « FR » : for french language and Roman Ordinary Calendar
                    - « GR » : for greek (hellenic) language and Roman Ordinary Calendar
                    - « IT » : for italian language and Roman Ordinary Calendar
                    - « MG » : for malagasy language and Roman Ordinary Calendar
                    - « NL » : for dutch language and Roman Ordinary Calendar
                    - « PL » : for polish language and Roman Ordinary Calendar
                    - « PT » : for portuges language and Roman Ordinary Calendar
                    - « SP » : for spanish language and Roman Ordinary Calendar
          for other catholics calendars forms :
                    - « ARM » : for armenian language and armenian calendar
                    - « BYA » : for arabic language and byzantine calendar
                    - « COA » : for arabic language and copte calendar
                    - « MAA » : for arabic language and maronite calendar
                    - « SYA » : for arabic language and syriac calendar
                    - « TRA » : for american-us language and Roman extraordinary calendar
                    - « TRD » : for german language and Roman extraordinary calendar
                    - « TRF » : for french language and Roman extraordinary calendar
                    - « TRS » : for spanish language and Roman extraordinary calendar

content Tells the lecture you want to get
          for Roman calendar Ordinary form :
                    - « FR » : for the first lecture
                    - « PS » : for the psalm
                    - « SR » : for the second lecture
                    - « GSP » : for the gospel
          for other catholics calendars forms :
                    - « EP » : for the epistle
                    - « GSP » : for the gospel

EXAMPLES

    type date lang content url example
To get the saint of a day   saint yyyymmdd Ordinary forms
AM, AR, DE, FR,
GR, IT, NL, PL,
PT, SP


Other forms
ARM, BYA, MAA,
TRF, TRA
Ordinary forms
 FR,PS,SR,GSP



Other forms
EP,GSP
http://feed.evangelizo.org/v2/reader.php?date=20190427&type=saint&lang=IT
To get the feast of a day   feast http://feed.evangelizo.org/v2/reader.php?date=20190427&type=feast&lang=AM
To get the liturgic title of a day  all  liturgic_t http://feed.evangelizo.org/v2/reader.php?date=20190427&type=liturgic_t&lang=FR
To get the long reading title of a day reading_lt http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading_lt&lang=SP&content=FR
To get the short reading title of a day reading_st http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading_st&lang=TRF&content=EP
To get the text of the reading of a day reading http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading&lang=DE&content=GSP
To get the commentary title of a day   comment_t http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_t&lang=PT
To get the commentary author of a day   comment_a http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_a&lang=FR
To get the commentary source of a day   comment_s http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_s&lang=PL
To get the commentary text of a day   comment http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment&lang=MAA


PHP example
   $today = date('Ymd');
   $url = "http://feed.evangelizo.org/v2/reader.php?date=$today&type=comment&lang=FR";
   $h = fopen($url,"r");
   while (!feof($h)) {
     $str .= fgets($h);
   }
   print $str;


Javascript example 1

   <html>
   <head>
     <title>Exemple d'affichage de fichier texte</title>
     <script language="javascript" type="text/javascript">
       function displayTextFile(filePath){
         iframe = document.getElementsByName('textDisplay')[0];
         iframe.src=filePath;
         iframe.style.display="block";
       }
     </script>
   </head>
   <body>
     <iframe id="textDisplay" name="textDisplay" src="" style="width: 400px; height: 240px; display: none;"></iframe>
     <script>
       var currentTime = new Date();
       var month = currentTime.getMonth() + 1;
       var day = currentTime.getDate();
       var year = currentTime.getFullYear();
       if (day < 10) day = '0'+day;
       if (month < 10) month = '0'+month;
       displayTextFile('http://feed.evangelizo.org/v2/reader.php?date='+year+month+day+'&type=reading&lang=FR&content=GSP');
     </script>
   </body>
   </html>





Test it online !

What: Date: Lang: Content (optional):




Commento al Vangelo

Reader Evangelizo Error : wrong param « date » !! Must be less than 30 days from today ...

NAME

« Reader Evangelizo »

SYNOPSIS

http://feed.evangelizo.org/v2/reader.php [params...]

RETURN VALUE

The « Reader Evangelizo » script return a string with the content requested by "type" parameter
The returned string will be encoded as following :
  • UTF-8: for any param "lang"

DESCRIPTION

This manual page documents the « Reader Feed v2.0 » for EVANGELIZO.ORG.
With the « Reader Evangelizo » you can get all texts provided by evangelizo.org web service. The « Reader Evangelizo » will help you to display daily reading in your website, or saint of the day .. etc
The « Reader Evangelizo » is used as any PHP file on a website, with params like : file.php?param1=1&param2=2

PARAMETERS

Usage : http://feed.evangelizo.org/v2/reader.php?param1=«value1»&param2=«value2»br />
date Must be formatted like YYYYMMDD. Can not exceed 30 days from today.

type Inform about what you want to get
                    - « saint » : to get the saint of the day (with link to life)
                    - « feast » : to get the feast of the day, if there is one (with link to explanation)
                    - « liturgic_t » : to get the liturgic title
                    - « reading_lt » : to get the long title of the reading
                    - « reading_st » : to get the short title of the reading
                    - « reading » : to get the text of the reading
                    - « audio » : to get the URL of audio file if exist
                    - « all » : to get all the readings of the day
                    - « comment_t » : to get the title of the commentary
                    - « comment_a » : to get the author of the commentary
                    - « comment_s » : to get the source of the commentary
                    - « comment » : to get the text of the commentary
                    - « xml » : to get all infos of the day in XML format

lang Tells the language to display and the liturgical calendar to use
          for Roman Ordinary Calendar :
                    - « AM » : for american-us language and Roman Ordinary Calendar
                    - « AR » : for arabic language and Roman Ordinary Calendar
                    - « DE » : for german language and Roman Ordinary Calendar
                    - « FR » : for french language and Roman Ordinary Calendar
                    - « GR » : for greek (hellenic) language and Roman Ordinary Calendar
                    - « IT » : for italian language and Roman Ordinary Calendar
                    - « MG » : for malagasy language and Roman Ordinary Calendar
                    - « NL » : for dutch language and Roman Ordinary Calendar
                    - « PL » : for polish language and Roman Ordinary Calendar
                    - « PT » : for portuges language and Roman Ordinary Calendar
                    - « SP » : for spanish language and Roman Ordinary Calendar
          for other catholics calendars forms :
                    - « ARM » : for armenian language and armenian calendar
                    - « BYA » : for arabic language and byzantine calendar
                    - « COA » : for arabic language and copte calendar
                    - « MAA » : for arabic language and maronite calendar
                    - « SYA » : for arabic language and syriac calendar
                    - « TRA » : for american-us language and Roman extraordinary calendar
                    - « TRD » : for german language and Roman extraordinary calendar
                    - « TRF » : for french language and Roman extraordinary calendar
                    - « TRS » : for spanish language and Roman extraordinary calendar

content Tells the lecture you want to get
          for Roman calendar Ordinary form :
                    - « FR » : for the first lecture
                    - « PS » : for the psalm
                    - « SR » : for the second lecture
                    - « GSP » : for the gospel
          for other catholics calendars forms :
                    - « EP » : for the epistle
                    - « GSP » : for the gospel

EXAMPLES

    type date lang content url example
To get the saint of a day   saint yyyymmdd Ordinary forms
AM, AR, DE, FR,
GR, IT, NL, PL,
PT, SP


Other forms
ARM, BYA, MAA,
TRF, TRA
Ordinary forms
 FR,PS,SR,GSP



Other forms
EP,GSP
http://feed.evangelizo.org/v2/reader.php?date=20190427&type=saint&lang=IT
To get the feast of a day   feast http://feed.evangelizo.org/v2/reader.php?date=20190427&type=feast&lang=AM
To get the liturgic title of a day  all  liturgic_t http://feed.evangelizo.org/v2/reader.php?date=20190427&type=liturgic_t&lang=FR
To get the long reading title of a day reading_lt http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading_lt&lang=SP&content=FR
To get the short reading title of a day reading_st http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading_st&lang=TRF&content=EP
To get the text of the reading of a day reading http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading&lang=DE&content=GSP
To get the commentary title of a day   comment_t http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_t&lang=PT
To get the commentary author of a day   comment_a http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_a&lang=FR
To get the commentary source of a day   comment_s http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_s&lang=PL
To get the commentary text of a day   comment http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment&lang=MAA


PHP example
   $today = date('Ymd');
   $url = "http://feed.evangelizo.org/v2/reader.php?date=$today&type=comment&lang=FR";
   $h = fopen($url,"r");
   while (!feof($h)) {
     $str .= fgets($h);
   }
   print $str;


Javascript example 1

   <html>
   <head>
     <title>Exemple d'affichage de fichier texte</title>
     <script language="javascript" type="text/javascript">
       function displayTextFile(filePath){
         iframe = document.getElementsByName('textDisplay')[0];
         iframe.src=filePath;
         iframe.style.display="block";
       }
     </script>
   </head>
   <body>
     <iframe id="textDisplay" name="textDisplay" src="" style="width: 400px; height: 240px; display: none;"></iframe>
     <script>
       var currentTime = new Date();
       var month = currentTime.getMonth() + 1;
       var day = currentTime.getDate();
       var year = currentTime.getFullYear();
       if (day < 10) day = '0'+day;
       if (month < 10) month = '0'+month;
       displayTextFile('http://feed.evangelizo.org/v2/reader.php?date='+year+month+day+'&type=reading&lang=FR&content=GSP');
     </script>
   </body>
   </html>





Test it online !

What: Date: Lang: Content (optional):





Orari e intenzioni S.Messe

Parrocchia di S. Leonardo - Ponzano

Sab 1118:30 * Simone Simeoni. * Rita De Marchi e Luigino Picciol. Domenica della Divina Misericordia - prefestiva - Prime Comunioni.
Dom 1208:30 * Per tutta la comunità. * Fam. Zanella e De Longhi. * Desi Schieven, Attilio e Severino Rossetto. * Ugo, Cosimo e Ornella. * Emma Della Libera. * Don Franco Marton, Angelo Cocchetto. * Olinda e Francesco Zasso. Domenica della Divina Misericordia
10:30 * Annamaria e Bruno Dalla Lana. * Tullio Uliana e fam. * Luciano Brugnaro. Domenica della Divina Misericordia - Prime Comunioni.
Gio 1618:30 * Maria e Luigi De Conto e famiglia. Adorazione con Rosario e Vespri alle ore 17.15, segue Santa Messa
Sab 1818:30 III Domenica di Pasqua - prefestiva.
Dom 1908:30 * Lino Rossi. * Marica Buso e Fiorella Micheletto. * Suor Vincenzina, Antonio e Vincenzo. * Ruggero Stolfo (Anniv.). III Domenica di Pasqua.
10:30 * Per tutta la comunità. * Stella, Amedeo e Livio III Domenica di Pasqua.

Parrocchia di S. Maria Assunta - Paderno

Sab 1118:30 * Maria Zandonà, Lorena e Giuseppe Rizzardo. * Marika, Benedetto Gola e fam. Domenica della Divina Misericordia - prefestiva.
Dom 1209:00 * Pasqualina Stefan, Luciano ed Egidio Gallina. * Angelino Cendron. * Bruno Toffoletto. * Walter Veronese. * Rosalia e Augusto Piovesan. * Paola e Matteo Benedetti. Domenica della Divina Misericordia
11:30 * Per tutta la comunità. * Massimo, Matteo, Emanuel Bonotto (viventi). Domenica della Divina Misericordia
Mar 1408:30 Santa Messa e Adorazione Eucaristica.
Sab 1818:30 * Virgilio Giacomel. III Domenica di Pasqua - prefestiva. Prime Comunioni.
Dom 1909:00 * Vivi e defunti famiglie Tonon e Biasetto. * Mirella, Ines, Giovanni Lunardi e famiglie. III Domenica di Pasqua.
11:30 * Per tutta la comunità. III Domenica di Pasqua. Prime Comunioni

Parrocchia di S. Bartolomeo - Merlengo

Sab 1118:30 * Roberta ed Elio Massolin. * Rosetta e Igino Piovesan. * Giovanna e Alfeo Bandiera. * Daniele Vesco e fam. Berlese. * Giuseppe Zago. Domenica della Divina Misericordia - prefestiva.
Dom 1210:00 * Firmina Trevisan, Bruno Pozzebon e Luigino Maggiolo. * Stella Rasera e Luigi Paccagnan. * Maria Dal Col e fam. * Mario Massolin e fam. * Pietro Cisilotto, Agostino Martini e famigliari vivi e defunti. * Amabile Baseggio, Alfeo Contò, Bortolo Visentin. * Giovanna Zanella, Stamatios Demertzis. Domenica della Divina Misericordia - Prime Comunioni.
18:30 * Per tutta la comunità. * Anastasia, Vittorio e Bernardo Piovesan. * Maria Carmela Colazzo. * Pasquale Borsato, genitori e fratelli. * Silvio e Ottavina. Domenica della Divina Misericordia
Ven 1708:30
Sab 1818:30 * Paolo Bianchin. * Giuseppe e Antonio Pavan. * Luigina e Ruggero Nasato, Antonio Bernardi. * Livia, Roberta e Gino Camazzola. * Pierina e Abramo Piovesan. III Domenica di Pasqua - prefestiva.
Dom 1910:00 * Rodolfo Polon. * Vittorio Pizzolato. * Domenica Bernardi e Giuseppe Polon. * Pierluigi Pierobon. * Dina De Tuoni e Jone Bittesnik. III Domenica di Pasqua.
18:30 * per tutta la comunità. III Domenica di Pasqua.

Parrocchia di S. Pelagio - San Pelajo

Avvisi pastorali

Come di consueto, proponiamo la “BUSTA DI PASQUA”, raccolta annuale di offerte in occasione della Pasqua. Guardando ai parecchi lavori manutenzione che servono per le strutture parrocchiali, si è ritenuto opportuno fare appello alla generosità di tutti. Sono stati individuati quattro progetti specifici, uno per ciascuna parrocchia, ai quali saranno destinate le offerte raccolte. Sarà possibile contribuire utilizzando le apposite buste, disponibili nelle chiese a partire da lunedì 30 marzo e per tutto il tempo di Pasqua, oppure tramite bonifico bancario.

PONZANO: Tetto della canonica (necessita di urgente restauro), bonifico intestato a Parrocchia di S. Leonardo Abate IBAN: IT08A0874961940000000302508 - Causale: BUSTA DI PASQUA 2026;

PADERNO: Impianto antincendio e antifurto del Palazzetto, delle cucine e dell'oratorio, bonifico intestato a Parrocchia Assunzione della B. V. Maria IBAN: IT64A0874961940000000300239 - Causale: BUSTA DI PASQUA 2026;

MERLENGO: Copertura cappellina del cimitero, bonifico intestato a Parrocchia di S. Bartolomeo IBAN: IT95V0874961940000000300999 - Causale: BUSTA DI PASQUA 2026;

SAN PELAGIO: Sistemazione spazi esterni e recinzioni lato Strada di San Pelaio, bonifico intestato a Parrocchia di S. Pelagio martire IBAN: IT38N0306912060100000000598 - Causale: BUSTA DI PASQUA 2026.

PROVE E CONFESSIONI PER I BAMBINI

  • Paderno giovedì 16 aprile alle ore 16.45 in chiesa.
  • San Pelagio venerdì 17 aprile alle ore 17.00 in chiesa.

SACRAMENTO DELLA PRIMA COMUNIONE

  • Ponzano: sabato 11 aprile, S. Messa delle 18.30 (1° turno); domenica 12 aprile, S. Messa delle 10.30 (2° turno).
  • Merlengo: domenica 12 aprile, S. Messa delle 10.00.
  • Paderno: sabato 18 aprile, S. Messa delle 18.30 (1° turno); domenica 19 aprile, S. Messa delle 11.30 (2° turno).
  • San Pelagio: domenica 19 aprile, S. Messa delle 10.00.

➡️OPERATORI DELLA LITURGIA incontro per i referenti lunedì 13 aprile alle ore 19.00 a Ponzano in sala Zanella.

➡️EQUIPE GREST 2026 riunione del direttivo lunedì 13 aprile alle ore 20.45 a Ponzano in Sala Zanella.

➡️DEVOLVI IL 5X1000 ALL’ASS. "ARCIPELAGO DELLA GIOIA" che riunisce le tre Scuole dell’Infanzia parrocchiali di Ponzano, Paderno e Merlengo. Per farlo basta apporre la propria frma nella dichiarazione dei redditi nella casella “Sostegno degli enti del Terzo settore” e indicare il seguente codice fscale: 94184130261. Grazie a quanti vorranno sostenere, con questo piccolo gesto, le attività delle scuole.

➡️BANCO DEI DOLCI il riparto guide di Paderno domenica 12 aprile, all'uscita dalle Sante Messe offrirà dolci in cambio di un contributo responsabile per autofinanziare la propria attività.

➡️CPAE DI PADERNO si ritrova giovedì 16 aprile alle ore 20.45 a Ponzano in Sala Zanella.

➡️ISOLA DI SAN FRANCESCO DEL DESERTO, VENEZIA visita guidata organizzata dal Circolo NOI S. Bartolomeo per venerdì 1 maggio. Info in oratorio la domenica mattina.

➡️PULIZIE DELLA CHIESA DI S. PELAGIO cercasi volontari, anche solo per qualche ora. Contattare Maria al n. 340.8330253 o Luigina al n. 328.5682210.

➡️DIRETTIVO DEL NOI si riunisce mercoledì 15 aprile alle ore 20.45 in oratorio.

➡️FESTA DI PRIMAVERA il Circolo NOI di San Pelagio organizza la festa di Primavera domenica 19 aprile con possibilità di pranzare in compagnia (iscrizioni entro il 16 aprile). Alle 14.30 ci sarà l'assemblea e l'elezione dei candidati al direttivo del Circolo. Maggiori informazioni nella locandina nel sito.