The project is build on Symfony 6 and the PHP version of the language being used is PHP 8.1. Install symfony on your local machine
# Install dependencies
composer update
# or
composer install
# Migrate
php bin/console doctrine:migrations:migrate
# Run Server
symfony server:start -d
# Add and set value in your .env.local for the following environment variables
WHATSAPP_TEMPLATE_NAME=
WHATSAPP_TEMPLATE_LANGUAGE=
WHATSAPP_TEMPLATE_NAMESPACE=
WHATSAPP_TEMPLATE_ODOO_STATUS=-
The business can be saved in the
odoo_businesstable. We need the following field in order to save the- Host
- Database
- Business Name
- Api Key
You can get all these field by creating a business on Odoo and going through their developer's documentation.
-
- We can get the contact lists and instantly send them the Whatsapp Text message according to out template that we want to use to send the message.
- You can run this command in order to get the contacts and send them the message if they have not already been sent
the message
php bin/console odoo:send-whatsapp - Once the contacts have been retrieved, and the message has been sent, we can see the list of contacts in the
odoo_contacttable and list of recipients from those contacts can be seenodoo_sent_contacttable.
-
- To test out how the user can get the status update message on WhatsApp, we need to change
tags fieldagainst a contact in the Odoo Business Dashboard. - If this is a new contact registered to our application the status message will not get sent.
- The
status change messageis sent to the already saved contact when the status has changed.
- To test out how the user can get the status update message on WhatsApp, we need to change
Create your account at tochat.be and get support and your whatsapp api.