Drift

Chat with your customers with Drift.

Environment variables:

  • Frontend

    • VUE_APP_INTEGRATIONS_CONVERSATIONS_DRIFT

Marketing side

Uncomment line on file ClientApp/srs/views/marketing/Index.vue

this.$drift.show();

App side

Uncomment these lines on file ClientApp/srs/components/layouts/AppLayout.vue

 this.$drift.identify(this.$store.state.account.user.id, {
        name: this.$store.state.account.user.firstName,
        email: this.$store.state.account.user.email,
      });
this.$drift.show();

Example:

Last updated