NETCORESAAS
  • Welcome
  • Getting Started
    • Getting started
      • Frontend
      • Backend + Frontend
    • Deploy
      • Initialize git repository
      • Deploy to heroku
    • Environment variables
    • API
      • Controllers
    • Testing
      • Integration Tests
  • Other
    • Installing
      • 1. Install VSCode
      • 2. Install .NET Core SDK
      • 3. Install Node.js
      • 4. Test installation
    • Integrations
      • Stripe
        • Subscription Options
        • Getting the API Keys
        • Creating Stripe Products
        • Creating the Customer Portal
      • Email
        • SMTP
        • Postmark
      • Social Login
        • Google Sign In
      • Conversations
        • Intercom
        • Drift
  • Blog
Powered by GitBook
On this page
  • Environment variables:
  • Marketing side
  • App side

Was this helpful?

  1. Other
  2. Integrations
  3. Conversations

Intercom

Chat with your customers with Intercom.

PreviousConversationsNextDrift

Last updated 4 years ago

Was this helpful?

Environment variables:

  • Frontend

    • VUE_APP_INTEGRATIONS_CONVERSATIONS_INTERCOM

Marketing side

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

this.$intercom.show();

App side

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

this.$intercom.boot({
        user_id: this.$store.state.account.user.id,
        name: this.$store.state.account.user.firstName,
        email: this.$store.state.account.user.email,
      });
this.$intercom.show();

Example:

Intercom