Line 37 in /www/htdocs/w01d174d/domains/neueshypno/app/src/Tasks/SendRatingMailTask.php
28 29 private static $teilnehmer; 30 31 /** 32 * @inheritDoc 33 */ 34 public function run($request) 35 { 36 $this->SiteConfig = SiteConfig::current_site_config(); 37 $this->teilnehmer = $this->getTeilnehmer(); 38 $this->sendTheEmail(); 39 echo 'fertig'; 40 } 41 42 private function sendTheEmail() 43 {
Line 44 in /www/htdocs/w01d174d/domains/neueshypno/app/src/Tasks/SendRatingMailTask.php
35 { 36 $this->SiteConfig = SiteConfig::current_site_config(); 37 $this->teilnehmer = $this->getTeilnehmer(); 38 $this->sendTheEmail(); 39 echo 'fertig'; 40 } 41 42 private function sendTheEmail() 43 { 44 foreach ($this->teilnehmer as $teiln) { 45 $email = new Email(); 46 $email->setSubject($this->SiteConfig->RatingEmailSubject); 47 $email->setFrom($this->SiteConfig->EmailFrom); 48 49 $email->setTo($teiln->EMail); 50 $data = [];