⏱️ Lectura: 8 min
As of Tuesday, August 11, 2026, telemarketing in France without prior consent is illegal: no call center can dial your phone without your explicit permission, under a new law that punishes each call with fines of up to 375,000 euros.
📑 En este artículo
- TL;DR
- What happened with telemarketing in France
- Context and history
- Technical details and performance
- How to start implementing a compliant system
- Impact and analysis
- What’s next
- Frequently Asked Questions
- Does the law apply to companies outside France?
- What about calls from companies I already have a relationship with?
- How do I report an illegal call in France?
- What’s the difference between an opt-in and an opt-out model?
- How does this affect call centers working for French clients from Latin America?
- Can I withdraw my consent after giving it?
- References
The change isn’t just for consumers. Software companies that operate contact centers, CRM platforms, and B2B sales teams that call French numbers must adapt their consent systems before the week is over.
TL;DR
- France bans unsolicited telemarketing calls starting Tuesday, August 11, 2026.
- The law requires prior, explicit consent before any commercial call.
- Fines of up to €75,000 per call for individuals and €375,000 for companies.
- Bloctel, the previous opt-out registry, was ignored by several call centers.
- An Irish company was fined 6 million euros in 2025 for violating Bloctel.
- Germany has banned telemarketing without consent since 2009; the UK and the US use opt-out.
- Morocco warns of risk to 40,000 to 50,000 call center jobs because of the French law.
- Consumers can report illegal calls on a French government website.
What happened with telemarketing in France
The General Directorate for Competition, Consumer Affairs and Fraud Control (DGCCRF) confirmed that, as of today, companies are prohibited from contacting consumers without their prior consent. Alice Vilcot, chief of staff at the DGCCRF, explained that this consent can be withdrawn at any time.
The French Parliament passed the law in 2025, after years of citizen complaints. According to government estimates, about three-quarters of people in France receive at least one unsolicited commercial call per week, and many receive several.
The penalties are severe. An individual who breaks the law faces up to 75,000 euros in fines per call, and a company up to 375,000 euros per call. There are exceptions: a consumer can agree to receive calls by checking a consent box on a form, and a company can keep contacting customers with whom it already has an active contractual relationship.
Context and history
Before this law, France used Bloctel, an opt-out registry where consumers could list their number to stop receiving commercial calls. The problem was enforcement: several call centers simply ignored the list.
In 2024, eleven French consumer organizations jointly called for a ban on telemarketing without consent, denouncing what they described as constant harassment through landline and mobile calls. A year later, a company based in Ireland was fined 6 million euros for violating the Bloctel list by calling numbers registered on it.
France isn’t the first country to regulate these calls, but it does adopt one of the strictest models: mandatory opt-in instead of the classic opt-out used by other markets.
| Country | Model | Maximum fine |
|---|---|---|
| France | Opt-in: calling without prior consent is prohibited | €375,000 per call (company) |
| Germany | Opt-in since 2009 | Determined case by case |
| United Kingdom | Opt-out via Telephone Preference Service | £500,000 per call |
| United States | Opt-out via Do Not Call Registry | Determined by the FTC case by case |
| Canada | Opt-out via Do Not Call List | Determined case by case |
Technical details and performance
For an engineering team, moving from an opt-out model to an opt-in one completely changes the architecture of an outbound dialing system. It’s no longer enough to exclude numbers from a blacklist: each number must have a positive consent record, with a timestamp and source (web form, checked box, signed contract), before it can be dialed.
The usual pattern is a consent management platform (CMP) acting as the source of truth. Before each call, the dialer queries that source; if there’s no active opt-in record, the call is automatically blocked.
flowchart TD
A["List of numbers to call"] --> B["Check consent"]
B -->|"active opt-in"| C["Allow call"]
B -->|"no consent"| D["Block number"]
D --> E["Log exclusion"]
C --> F["Dial the number"]
The critical performance point isn’t the query itself (a key lookup usually responds in milliseconds), but the propagation of consent withdrawals. If a consumer withdraws permission and the system takes hours to reflect it, every subsequent call in that window is a new violation.
⚠️ Heads up: if your marketing system doesn’t invalidate withdrawn consent in real time, each subsequent call counts as a new violation, with its own fine.
How to start implementing a compliant system
The simplest way to reason about this is to treat consent as a versioned resource: every state change (granted, withdrawn) is stored as an event, and the dialer always checks the latest state before dialing.
const express = require('express');
const app = express();
app.use(express.json());
app.post('/calls/check-consent', async (req, res) => {
const { phoneNumber } = req.body;
const consent = await consentStore.get(phoneNumber);
if (!consent || consent.status !== 'opt-in') {
return res.status(403).json({ allowed: false, reason: 'no consent' });
}
res.json({ allowed: true, consentDate: consent.updatedAt });
});
app.listen(3000);
This minimal Node.js endpoint receives a phone number and responds whether it’s allowed to be dialed, based on the latest state stored in the consent store.
import redis
import csv
r = redis.Redis(host='localhost', port=6379, db=0)
def es_numero_permitido(numero_telefono):
estado = r.hget(f"consentimiento:{numero_telefono}", "status")
return estado == b"opt-in"
with open('lista_campana_francia.csv') as entrada, open('lista_filtrada.csv', 'w') as salida:
lector = csv.reader(entrada)
escritor = csv.writer(salida)
for fila in lector:
numero = fila[0]
if es_numero_permitido(numero):
escritor.writerow(fila)
This Python script filters a campaign list before launch: it only keeps numbers with active opt-in consent in Redis, discarding the rest without needing to touch the dialer.
To verify that the system is honoring a consent withdrawal, it’s enough to audit the most recent record for a specific number: SELECT phone_number, status, updated_at FROM consent_log WHERE phone_number = '+33...' ORDER BY updated_at DESC LIMIT 1;. If the status isn’t opt-in, that number shouldn’t appear on any active dialing list.
💡 Tip: always store the source and exact date of consent (form, checked box, contract) so you can prove it in an audit.
Impact and analysis
The most immediate effect falls on call centers running campaigns to French numbers, wherever they’re located. The law applies to the dialed number, not the location of the call center, so a sales team in Mexico, Colombia, or Argentina calling customers in France must also comply with it.
In Morocco, where a significant share of call centers serving the French market operate, Labor Minister Younes Sekkouri warned in March that between 40,000 and 50,000 jobs could be at risk if telemarketing campaigns to France are drastically reduced.
For software companies selling CRM or auto-dialing platforms to clients operating in France, this law pushes them to build or buy a consent management layer as a product requirement, not an optional feature. The cost of not doing so is no longer reputational: it’s a concrete fine for every call.
What’s next
The DGCCRF set up a channel for consumers to report illegal calls, which in practice serves as a source of complaints to launch investigations. The first fines under the new law are likely to become known in the coming weeks, following the precedent of the 6-million-euro fine issued in 2025 under the previous Bloctel regime.
Other European countries are watching the outcome closely: if the opt-in model measurably reduces consumer complaints in France, it’s an argument for more markets to adopt it instead of opt-out.
Try it yourself: if you manage an outbound calling system, review your consent database today before launching your next campaign to French numbers.
📖 Summary on Telegram: View summary
Frequently Asked Questions
Does the law apply to companies outside France?
Yes. If a company contacts a French phone number without consent, the law applies regardless of where the company is based, just as happened with the Irish company fined for violating Bloctel.
What about calls from companies I already have a relationship with?
The law allows a company to keep calling a customer if there’s already an active contract between them, without needing new explicit consent for related offers.
How do I report an illegal call in France?
The French government set up a website for consumers to report unsolicited commercial calls after August 11, 2026.
What’s the difference between an opt-in and an opt-out model?
In an opt-in model, like the French one, calling is prohibited unless the consumer has given consent beforehand. In an opt-out model, like the one in the United States or Canada, calling is allowed unless the consumer has signed up for an exclusion list.
How does this affect call centers working for French clients from Latin America?
They must implement the same consent controls as a French company, because the law applies to the dialed number, not the location of the call center.
Can I withdraw my consent after giving it?
Yes. The law establishes that consent can be withdrawn at any time, and the company’s system must reflect that withdrawal before the next calling campaign.
References
- Le Monde: original English-language coverage of the law taking effect on August 11, 2026.
- Bloctel: official French opt-out registry for commercial calls, in effect before the new law.
- French Ministry of Economy: the body overseeing the DGCCRF, responsible for enforcing the new regulation.
- Telephone Consumer Protection Act: reference on the regulatory model for commercial calls in the United States.
📱 Do you like this content? Follow @programacion on Telegram for daily tech content in Spanish: quick summaries, fresh content every day.
0 Comments