Demo How language detect works in HubSpot ? Text_LanguageDetect is a PHP library renowned for its language detection capabilities. Although natively designed for PHP, you can harness its power within your HubSpot workflows using a custom code block in JavaScript. Let’s explore how this library...

The idea is to split an email by a delimiter if one exists, then search in a huge first names list for a match. Take a look at this video to see the logic in action Follow this video to implement this Custom Coded Action Here’s where you will find the code : https://github.com/Antoinebr/HubSpo...

The logic we want to create As you can see the deal is renamed based on the existing deals Prerequisites HubSpot and Operations Hub Basic JavaScript knowledge Node.js installed on your computer ( if you want to follow along the coding part ) An API key for your portal ( private App token ) The [&hel...

Enrichir son CRM HubSpot en se basant sur le SIRET Le registre du commerce à beaucoup d’informations sur vos clients, le SIRET peut vous aider à les récupérer et enrichir votre CRM. Depuis le numéro SIRET, vous pouvez notamment récupérer la raison sociale exacte d’une entreprise s...

Sentiment analysis demo The fastest way to understand what you can achieve with this automation is to watch this short video. The concept / schema The concept is pretty simple, first we get the message from a user, then we create a Workflow which will listen new tickets. This Workflow sends the cont...

Write your first Custom Coded Action In this article I’m will guide you and how to create your first Custom Coded Action. If you are not a developer this article is for you. I will explain without too much sideways how to create your first Custom Coded Action. Let’s get started Anatomy o...

Télécharger node depuis les sources ( apt-get…) Franchement, c’est assez pénible et c’est prompt à encore plus d’erreur. Car si vous êtes ici, c’est que quelque chose ne se passe pas comme prévu. Bref, je vous déconseille cette solution. Utiliser le package « n...

Dans un projet vue.js commencez par installer vueX Installez vueX avec npm npm install vuex --save Créez un store Créez un store dans votre application. J’ai décidé de créer un dossier store à la racine de mon projet. Dans le fichier ./store/store.js // ./store/store.js import Vue from '...

Installer les containers Le plus simple est d’utiliser un fichier docker-compose.yml Créez le fichier docker-compose.yml suivant à la racine de votre projet. php_apache: image: webdevops/php-apache:7.1 links: - db:mysql ports: - 8989:80 volumes: - ./:/app/ - ./php.ini/:/opt/docker/etc/php/ph...