markuspoerschke / iCal

iCal-creator for PHP
https://ical.poerschke.nrw
MIT License
1.13k stars 162 forks source link

Set organizer not working properly #501

Open timrasche opened 1 year ago

timrasche commented 1 year ago

Gmail shows 'Unknown Organizer' and Outlook shows blank value.

Used code as in example 1 described.

ServerExe commented 1 month ago

Yeah, same here. Gmail shows "Unknown Organizer" if you use the sentBy, which results in the following line:

ORGANIZER;CN=Firstname Lastname;SENT-BY=mailto:noreply@example.com:mai
 lto:firstname.lastname@example.com

This is the code:

$calendarOrganizer = new Organizer(
    emailAddress: new EmailAddress('firstname.lastname@example.com'),
    displayName: 'Firstname Lastname',
    sentBy: new EmailAddress('noreply@example.com')
);

...