• Customer Care
  • (888) 123-4567

Nos concerts

Concert de Noël - Bach - Haendel

Concert de Noël - Bach - Haendel

Dimanche 11 décembre 2022 à 17h00

Eglise Saint-Thibaut - Le Pecq (78)

Chœurs Elisabeth Brasseur
Direction et hautbois solo : Antoine Sébillotte
Orgue : Jean-Paul Imbert
Trompette solo : Matthieu Magnin

Programme

  • Haendel : "When The Ear Heard Him", extrait de Israël en Egypte - chœur, trompette, hautbois et orgue
  • Haendel : "The Righteous Shall Be Had", extrait de Israël en Egypte - chœur, trompette, hautbois et orgue
  • Bach : Choral "Nun Komm Der Heiden Heiland" - orgue
  • Tartini : Concerto pour trompette, hautbois et orgue (2 mouvements)
  • Rameau : La Nuit - chœur
  • Dubois : Cantilène - Hautbois et orgue
  • Noël traditionnel (Poitou) : Appelons Nau - chœur, trompette, hautbois et orgue
  • Noël traditionnel (Antilles) : Oh La Bonne Nouvelle - chœur, trompette, hautbois et orgue
  • Noël traditionnel (Ukraine) : Nova Radisst Stala - chœur
  • Adrien Barthe : Le Berger - hautbois et orgue
  • Haendel : "The Trumpet Shall Sound", extrait du Messie - trompette et orgue
  • Bach : "Ehre Sei Dir, Gott, Gesungen", extrait de l'Oratorio de Noël - chœur, hautbois, trompette et orgue

Informations pratiques

Dimanche 11 décembre 2022, 17h00
Eglise Saint-Thibaut
58 avenue du Président J. F. Kennedy, 78230 Le Pecq

Entrée et participation libres

AOST Amis des Orgues de Saint-Thibaut
facebook.com/orgue.st.thibaut
orgue-st-thibaut.webnode.fr

Propriétés de l'événement

Date de l'événement 11-12-2022

Les inscriptions pour cet événement sont closes.

Image

Nous contacter

Répétitions : 3 place Saint Jean, 75017 Paris, France

contact@choeurs-elisabeth-brasseur.com

Invalid address: (From): (500 Whoops, looks like something went wrong.)

Exception

HTTP 500 Whoops, looks like something went wrong.

Invalid address: (From):

Exception

PHPMailer\PHPMailer\ Exception

  1.                 $address
  2.             );
  3.             $this->setError($error_message);
  4.             $this->edebug($error_message);
  5.             if ($this->exceptions) {
  6.                 throw new Exception($error_message);
  7.             }
  8.             return false;
  9.         }
  10.         $this->From $address;
  1.             // If $from is an array we assume it has an address and a name
  2.             if (isset($from[2])) {
  3.                 // If it is an array with entries, use them
  4.                 $result $this->setFrom(MailHelper::cleanLine($from[0]), MailHelper::cleanLine($from[1]), (bool) $from[2]);
  5.             } else {
  6.                 $result $this->setFrom(MailHelper::cleanLine($from[0]), MailHelper::cleanLine($from[1]));
  7.             }
  8.         } elseif (\is_string($from)) {
  9.             // If it is a string we assume it is just the address
  10.             $result $this->setFrom(MailHelper::cleanLine($from), $name);
  11.         } else {
  1.         {
  2.             $fromName  Factory::getApplication()->get('fromname');
  3.             $fromEmail Factory::getApplication()->get('mailfrom');
  4.         }
  5.         $mailer->setSender([$fromEmail$fromName]);
  6.         $mailer->isHtml(true);
  7.         if (empty($config->notification_emails))
  8.         {
  1.         $db      Factory::getDbo();
  2.         $query   $db->getQuery(true);
  3.         $config  EventbookingHelper::getConfig();
  4.         $message EventbookingHelper::getMessages();
  5.         $mailer  = static::getMailer($config);
  6.         $now     $db->quote(Factory::getDate('now'Factory::getApplication()->get('offset'))->toSql(true));
  7.         $bccEmail                $params->get('bcc_email''');
  8.         $numberEmailSendEachTime = (int) $params->get('number_registrants'15) ?: 15;
  1.         foreach (array_reverse($callableMethods) as $callable)
  2.         {
  3.             if (is_callable($callable))
  4.             {
  5.                 return call_user_func_array($callable$methodArgs);
  6.             }
  7.         }
  8.         throw new Exception(sprintf('Method %s does not exist in the helper %s'$method$helper));
  9.     }
  1.             // This is for backward compatible purpose
  2.             EventbookingHelper::callOverridableHelperMethod('Mail''sendReminder', [$numberEmailSendEachTime$bccEmail$this->params]);
  3.         }
  4.         else
  5.         {
  6.             EventbookingHelper::callOverridableHelperMethod('Mail''sendReminderEmails', [$this->params1]);
  7.         }
  8.         // Send second reminder
  9.         if (is_callable('EventbookingHelperOverrideMail::sendSecondReminder'))
  10.         {
  1.                 }
  2.                 // Convert to indexed array for unpacking.
  3.                 $arguments array_values($arguments);
  4.                 $result $this->{$methodName}(...$arguments);
  5.                 // Ignore null results
  6.                 if ($result === null) {
  7.                     return;
  8.                 }
  1.             foreach ($this->listeners[$event->getName()] as $listener) {
  2.                 if ($event->isStopped()) {
  3.                     return $event;
  4.                 }
  5.                 $listener($event);
  6.             }
  7.         }
  8.         return $event;
  9.     }
  1.             $dispatcher $this->getDispatcher();
  2.         } catch (\UnexpectedValueException $exception) {
  3.             return null;
  4.         }
  5.         return $dispatcher->dispatch($eventName$event ?: new ApplicationEvent($eventName$this));
  6.     }
  7.     /**
  8.      * Method to run the application routines.
  9.      *
  1.         $this->respond();
  2.         // Trigger the onAfterRespond event.
  3.         $this->dispatchEvent(
  4.             'onAfterRespond',
  5.             new AfterRespondEvent('onAfterRespond', ['subject' => $this])
  6.         );
  7.     }
  8.     /**
  9.      * Check if the user is required to reset their password.
  1. // Set the application as global app
  2. \Joomla\CMS\Factory::$application $app;
  3. // Execute the application.
  4. $app->execute();
require_once('/var/www/vhosts/choeurs-elisabeth-brasseur.com/httpdocs/includes/app.php') in /var/www/vhosts/choeurs-elisabeth-brasseur.com/httpdocs/index.php (line 32)
  1.  * define() is used rather than "const" to not error for PHP 5.2 and lower
  2.  */
  3. define('_JEXEC'1);
  4. // Run the application - All executable code should be triggered through this file
  5. require_once dirname(__FILE__) . '/includes/app.php';

Stack Trace

Exception
PHPMailer\PHPMailer\Exception:
Invalid address:  (From): 

  at /var/www/vhosts/choeurs-elisabeth-brasseur.com/httpdocs/libraries/vendor/phpmailer/phpmailer/src/PHPMailer.php:1354
  at PHPMailer\PHPMailer\PHPMailer->setFrom()
     (/var/www/vhosts/choeurs-elisabeth-brasseur.com/httpdocs/libraries/src/Mail/Mail.php:205)
  at Joomla\CMS\Mail\Mail->setSender()
     (/var/www/vhosts/choeurs-elisabeth-brasseur.com/httpdocs/components/com_eventbooking/helper/mail.php:2145)
  at EventbookingHelperMail::getMailer()
     (/var/www/vhosts/choeurs-elisabeth-brasseur.com/httpdocs/components/com_eventbooking/helper/mail.php:1623)
  at EventbookingHelperMail::sendReminderEmails()
     (/var/www/vhosts/choeurs-elisabeth-brasseur.com/httpdocs/components/com_eventbooking/helper/helper.php:868)
  at EventbookingHelper::callOverridableHelperMethod()
     (/var/www/vhosts/choeurs-elisabeth-brasseur.com/httpdocs/plugins/system/ebreminder/ebreminder.php:91)
  at plgSystemEBReminder->onAfterRespond()
     (/var/www/vhosts/choeurs-elisabeth-brasseur.com/httpdocs/libraries/src/Plugin/CMSPlugin.php:320)
  at Joomla\CMS\Plugin\CMSPlugin->Joomla\CMS\Plugin\{closure}()
     (/var/www/vhosts/choeurs-elisabeth-brasseur.com/httpdocs/libraries/vendor/joomla/event/src/Dispatcher.php:454)
  at Joomla\Event\Dispatcher->dispatch()
     (/var/www/vhosts/choeurs-elisabeth-brasseur.com/httpdocs/libraries/vendor/joomla/application/src/AbstractApplication.php:99)
  at Joomla\Application\AbstractApplication->dispatchEvent()
     (/var/www/vhosts/choeurs-elisabeth-brasseur.com/httpdocs/libraries/src/Application/CMSApplication.php:349)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/var/www/vhosts/choeurs-elisabeth-brasseur.com/httpdocs/includes/app.php:58)
  at require_once('/var/www/vhosts/choeurs-elisabeth-brasseur.com/httpdocs/includes/app.php')
     (/var/www/vhosts/choeurs-elisabeth-brasseur.com/httpdocs/index.php:32)