🏋️ Force sending to non-optins
Table of Contents
You may want to send campaigns or automations to non-optin customers whose numbers you already have.
⚠️ This method should not be overused, especially if your account quality is low in the eyes of WhatsApp.
Campaign sent from Simio
You simply need to uncheck the box below when sending ↓

Campaign sent from Klaviyo
First, you need to go to your Klaviyio Webhook and then to the JSON body. Then you need to add the mention "isForced": true,
below "phone": "{{ person.phone_number|default:'' }}",
For example :
Before | After |
![]() |
![]() |
Please note
- Sometimes
phone
is namedphoneNumber
- It may be that your
isForced
parameter is the last one before the } at the end of the code. In this case, you should not put a comma aftertrue
to respect the syntax of the JSON code:

-
isForced
must be in quotation marks.