Remove Content-Disposition: attachment headers to make iTip invitations work in Outlook (#1103)
This commit is contained in:
parent
3cf64d43ea
commit
daa307c6af
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue