- Montag 1. Tag in der Wochenansicht
- Timezone Anpassung bei Mail Invitations
- Kodierung der Mail Subjects damit Umlaute im Outlook korrekt dargestellt werden
This commit is contained in:
Andreas Österreicher
2013-01-30 14:46:11 +00:00
parent f9626168f0
commit ec5ac0124b
3 changed files with 22 additions and 1 deletions
+1
View File
@@ -324,6 +324,7 @@ echo '<html>
// Kalender Initialisieren
$("#calendar").fullCalendar(
{
firstDay: 1,
header: {
left: "prev,next today",
center: "title",
+17
View File
@@ -512,6 +512,23 @@ function sendEmail($coodle_id)
PRODID:-//Microsoft Corporation//Outlook 11.0 MIMEDIR//EN
VERSION:2.0
METHOD:PUBLISH
BEGIN:VTIMEZONE
TZID:Europe/Vienna
BEGIN:DAYLIGHT
TZOFFSETFROM:+0100
RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU
DTSTART:19810329T020000
TZNAME:GMT+02:00
TZOFFSETTO:+0200
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:+0200
RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU
DTSTART:19961027T030000
TZNAME:GMT+01:00
TZOFFSETTO:+0100
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
ORGANIZER:MAILTO:".$erstellername." <".$coodle->ersteller_uid."@".DOMAIN."
".$teilnehmer."
+4 -1
View File
@@ -163,8 +163,11 @@ class mail
}
$mailbody .= "--".$eol;
// Subject Encoding setzen
$subject = "=?UTF-8?B?".base64_encode($this->subject)."?=";
// Senden
if(mail($this->to, $this->subject, $mailbody, $header))
if(mail($this->to, $subject, $mailbody, $header))
return true;
else
return false;