Remove Content-Disposition: attachment headers to make iTip invitations work in Outlook (#1103)

This commit is contained in:
Thomas Bruederli 2013-03-27 12:04:26 +01:00
parent 3cf64d43ea
commit daa307c6af

View file

@ -159,7 +159,7 @@ class calendar_itip
// attach ics file for this event
$ical = $this->cal->get_ical();
$ics = $ical->export(array($event), $method);
$message->addAttachment($ics, 'text/calendar', 'event.ics', false, '8bit', 'attachment', RCMAIL_CHARSET . "; method=" . $method);
$message->addAttachment($ics, 'text/calendar', 'event.ics', false, '8bit', '', RCMAIL_CHARSET . "; method=" . $method);
return $message;
}