/** * @brief use to create HTML emails and send them * @param $eventid The event id * @param $location The location * @param $description The description * @param $dtstart The start date * @param $dtend The end date * */ public static function sendEmails($eventid, $summary, $dtstart, $dtend, $emails) { $user = \OCP\User::getDisplayName(); $useremail = \OCP\Util::getDefaultEmailAddress('sharing-noreply'); $eventsharees = array(); $eventShareesNames = array(); //$emails = array(); //$data = App::getEventObject($eventid, true); $data = Export::export($eventid, Export::EVENT); $tmpStartDate = strtotime($dtstart); $myFile = date('Ymd', $tmpStartDate) . '.ics'; $fh = fopen(\OCP\User::getHome($user) . '/files/' . $myFile, "x+"); fwrite($fh, $data); fclose($fh); $attach['path'] = \OCP\User::getHome($user) . '/files/' . $myFile; $attach['name'] = $myFile; //$useremail = Calendar::getUsersEmails($user); //$testEmail=explode(",",$emails); //if(count($testEmail)>1) foreach ($emails as $email) { if ($email === null) { continue; } $subject = 'Termineinladung/ Calendar Invitation'; $message = '<b>' . $user . '</b> informiert Sie über das Ereignis<b> ' . \OCP\Util::sanitizeHTML($summary) . '</b> , geplant für <b>' . date('d.m.Y', $tmpStartDate) . '.</b> Um das Ereignis zum Kalender hinzuzufügen, klicken Sie auf den Link.<br><br>'; \OC_MAIL::send($email, "User", $subject, $message, $useremail, $user, $html = 1, $altbody = '', $ccaddress = '', $ccname = '', $bcc = '', $attach); } unlink(\OCP\User::getHome($user) . '/files/' . $myFile); }