
POST api/v1/summits/{id}/members/me/schedule/{event_id}/rsvp Payload anwers: array of answer DTO answer DTO question_id: int value: string or string array ( depending on type of question multivalue or not) Required Scopes REALM_BASE_URL/summits/write PUT api/v1/summits/{id}/members/me/schedule/{event_id}/rsvp Payload anwers: array of answer DTO answer DTO question_id: int value: string or string array ( depending on type of question multivalue or not) Required Scopes REALM_BASE_URL/summits/write DELETE api/v1/summits/{id}/members/me/schedule/{event_id}/rsvp Required Scopes REALM_BASE_URL/summits/write Change-Id: I9ea4388effd44617e5122e1b1a23c9c74473d2e6
24 lines
937 B
PHP
24 lines
937 B
PHP
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body>
|
|
<p>Thank you for your RSVP to <strong>{!! $event_title !!}</strong> at {!! $event_date !!} . For your convenience, we have added this to My Schedule within the Summit Management tool.</p>
|
|
@if(!empty($event_uri))
|
|
<p>Be sure to synch it to your calendar by going <a href="{!! $event_uri !!}" target="_blank">here</a>.</p>
|
|
@endif
|
|
Please present a printed copy of this email at the entrance where the event is being held.<br/><br/>
|
|
|
|
******************************************************************************************<br/>
|
|
<p>
|
|
Attendee: {!! $owner_fullname !!}<br/>
|
|
Event: {!! $event_title !!}<br/>
|
|
Confirmation #: {!! $confirmation_number !!}<br/>
|
|
</p>
|
|
******************************************************************************************<br/>
|
|
|
|
<p>Cheers,<br/>{!! Config::get('app.tenant_name') !!} Support Team</p>
|
|
</body>
|
|
</html>
|