URL that automatically creates a CSI?

Hello all,

We are looking to 'upend the tea table' with our opening night invitations, and I had the idea after the invite list was finalised via a List/Extraction, what if we could do an email to all people invited with YES and NO links inside the email.

I imagine both links would be specific to the constituent ID, and would create a CSI that prompted a staff member to follow up.

Has anyone experimented with any similar email based automation like this?

Cheers,

Nicholas Hudson-Ellis

Parents
  • Hi Nicholas -

    We've toyed with the idea of doing some sort of auto links from an email, but for us found that we wanted to gather more info than just a yes/no (e.g. number of tickets, HABO name).

    However, when we *were* looking at it we thought of doing a link to a web form that would basically feed the info needed in a link - such as customer number and yes/no status. The form could then process that info and do whatever you want it to do, whether it be generate a form email and confirmation email, make a CSI in Tessi, etc.

    So it's totally doable, we just ended up not going that route because we wanted to ask/offer additional information that was best collected via an rsvp form rather than a one-click button.

    - Heather

  • Hi Heather,

    Thanks for sharing, it's great to hear that I'm not completely out of the realm of possibilities!

    Could you share how far you got with the CSI creation step?

    If we can get over that hurdle, I'm sure the other details could be worked out.

    Cheers,

    Nicholas

  • Hi Nicholas

    Possible, although it might need a bit of a workaround.

    I use the API call ExecuteLocalProcedure to do a number of things on email clickthrough pages.

    For example, unsubscribing their email; in this case the link in the email contains a querystring with the customer number and the data protection list number. I use ExecuteLocalProcedure to pass these to a stored procedure that either amends their existing data protection record for that list, or creates a new one with an opt-out for that list.

    I use AddCustomerServiceIssue to add a CSI for a number of reasons. You can add any additional data in the notes.

    However, AddCustomerServiceIssue requires a valid session key, and associates the CSI with the customer associated with that session key; in plain English, meaning that it only works if the customer is logged in. Obviously this isn't good enough if you want a CSI to be added instantly when the customer clicks a link. I suppose you could make a page that temporarily logs the customer in, adds the CSI then logs out, but it wouldn't be good practice (and I think the login call requires the password or more personal detail, which you wouldn't want to send in the email querystring)

    So there's two ways round: You can link to a login page that redirects to the CSI-adding page once logged in (this also assures you that the CSI has been applied to the correct constituent record, rather than for example a wife reading a husband's email and clicking on the link?).

    Or you could set up a simple stored procedure that takes the customer number and any other information you want to record, and adds a line to T_CUST_ACTIVITY. This seems like the simplest solution to me, as long as you run the stored procedure past the Tessitura helpdesk to make sure the data you're putting in is always valid.

    Sorry, that ended up a little rambling - hope it was useful.

Reply
  • Hi Nicholas

    Possible, although it might need a bit of a workaround.

    I use the API call ExecuteLocalProcedure to do a number of things on email clickthrough pages.

    For example, unsubscribing their email; in this case the link in the email contains a querystring with the customer number and the data protection list number. I use ExecuteLocalProcedure to pass these to a stored procedure that either amends their existing data protection record for that list, or creates a new one with an opt-out for that list.

    I use AddCustomerServiceIssue to add a CSI for a number of reasons. You can add any additional data in the notes.

    However, AddCustomerServiceIssue requires a valid session key, and associates the CSI with the customer associated with that session key; in plain English, meaning that it only works if the customer is logged in. Obviously this isn't good enough if you want a CSI to be added instantly when the customer clicks a link. I suppose you could make a page that temporarily logs the customer in, adds the CSI then logs out, but it wouldn't be good practice (and I think the login call requires the password or more personal detail, which you wouldn't want to send in the email querystring)

    So there's two ways round: You can link to a login page that redirects to the CSI-adding page once logged in (this also assures you that the CSI has been applied to the correct constituent record, rather than for example a wife reading a husband's email and clicking on the link?).

    Or you could set up a simple stored procedure that takes the customer number and any other information you want to record, and adds a line to T_CUST_ACTIVITY. This seems like the simplest solution to me, as long as you run the stored procedure past the Tessitura helpdesk to make sure the data you're putting in is always valid.

    Sorry, that ended up a little rambling - hope it was useful.

Children