Citrix Plugins
Description:
Creates a plugin that pulls data from Mautic and pushes data to Mautic from GotoMeeeting, GotoWebinar, GotoTraining and GoToAssist.
Required Features:
- Create registrants in GoToWebinar and GoToTraining based on campaign decisions, contact data and also from registration forms in Mautic
- Pull back from registrant and attendee info into segments and campaigns
- Display webinar and training attendance as an additional activity on the contact timeline
- Send emails with buttons to start GoToMeeting, GoToTraining and GoToAssist sessions
Instructions
- Enable the plugins you need
- Activate the plugins with the Citrix Developer API keys
- Use the Consumer Keys from the developer website
- New segment filters will be available
- Past sessions will be available to choose from
- New fields will be availabe for forms
- The fields will display the available events for each product (the form will validate that the mandatory fields are present)
- Form actions will also be available
- Each action will permit to select a single event or let the user select from the form. They also include fields to map to obligatory lead fields
- This is an example of a form that lets the user select the event from a list
- The Send Link actions require an email object with a Token to insert the link of the event (the available tokens are shown)
- There are also conditions for campaigns (registered and attended)
- The campaign actions allow to select the event and the email template to send (if applicable)
- This is an example of a campaign that sends a link to a preliminary meeting after a contact is identified as to have registered to a webinar (using segment)
- In this example, the form has been submitted
- The new events appear in the contact's timeline
- The email with the link (that was injected with the Token) is viewed in the browser
- When the contact clicks on the link, it redirects to GoToMeeting to start the meeting
- This is an example of a webinar where the contact attended
- When the crontab job that synchronizes the data runs, it retrieves the new state of the contact and it's visible on the timeline as an attended event
The previous examples used GoToMeeting and GoToWebinar, but it's the same for GoToTraining and GoToAssist
Other details
The cron job to synchronize the events is
php app/console mautic:citrix:sync
Usage:
mautic:citrix:sync [options]
Options:
-p, --product[=PRODUCT] Product to sync (webinar, meeting, training, assist)
-i, --id[=ID] The id of an individual registration to sync
Update: Join GoToWebinar Button Token
Follow these steps to include a Join GoToWebinar button in a segment email:
Create a webinar in the GotoWebinar website
Create a new contact and use the email address to register for the new webinar
Run the Citrix Sync command:
php app/console mautic:citrix:sync
so that the webinar information is retrieved to the database.Create a segment with a "Webinar (registered)" filter. (Note that this is mandatory, and it will be validated when trying to save the email with the token in the body)
Add the contact to the segment manually or by running
php app/console mautic:segments:update
Create a new segment email and assign the previously created segment.
Open the email builder and insert the GotoWebinar button token:
Send the email to the segment contacts.
The email in the new contact inbox should include a button to join the webinar with the appropiate URL for the contact.
The button can be styled by overriding the
citrix-start-button
CSS class. ie.citrix-start-button { background: green !important; }