-
Notifications
You must be signed in to change notification settings - Fork 125
Sabre VObject ITip Message
This class represents an iTip message
A message holds all the information relevant to the message, including the object itself.
It should for the most part be treated as immutable.
- Class name: Message
- Namespace: Sabre\VObject\ITip
public string $uid
The object's UID
- Visibility: public
public string $component
The component type, such as VEVENT
- Visibility: public
public string $method
Contains the ITip method, which is something like REQUEST, REPLY or CANCEL.
- Visibility: public
public integer $sequence
The current sequence number for the event.
- Visibility: public
public string $sender
The senders' email address.
Note that this does not imply that this has to be used in a From: field if the message is sent by email. It may also be populated in Reply-To: or not at all.
- Visibility: public
public string $senderName
The name of the sender. This is often populated from a CN parameter from either the ORGANIZER or ATTENDEE, depending on the message.
- Visibility: public
public string $recipient
The recipient's email address.
- Visibility: public
public string $recipientName
The name of the recipient. This is usually populated with the CN parameter from the ATTENDEE or ORGANIZER property, if it's available.
- Visibility: public
public string $scheduleStatus
After the message has been delivered, this should contain a string such as : 1.1;Sent or 1.2;Delivered.
In case of a failure, this will hold the error status code.
See: http://tools.ietf.org/html/rfc6638#section-7.3
- Visibility: public
public \Sabre\VObject\Component\VCalendar $message
The iCalendar / iTip body.
- Visibility: public
mixed Sabre\VObject\ITip\Message::getScheduleStatus()
Returns the schedule status as an array: [ 0 => '1.2', 1 => 'Delivered', ]
- Visibility: public