<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Joseph Mensah</title>
    <description>The latest articles on DEV Community by Joseph Mensah (@joseph_mensah).</description>
    <link>https://dev.to/joseph_mensah</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3984474%2F0f1974b7-a7a8-4981-9c84-71814fe2c110.jpeg</url>
      <title>DEV Community: Joseph Mensah</title>
      <link>https://dev.to/joseph_mensah</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/joseph_mensah"/>
    <language>en</language>
    <item>
      <title>I Stopped Hand-Rolling WhatsApp Integrations. Here's What I Use Instead.</title>
      <dc:creator>Joseph Mensah</dc:creator>
      <pubDate>Mon, 15 Jun 2026 07:45:15 +0000</pubDate>
      <link>https://dev.to/joseph_mensah/i-stopped-hand-rolling-whatsapp-integrations-heres-what-i-use-instead-2kj6</link>
      <guid>https://dev.to/joseph_mensah/i-stopped-hand-rolling-whatsapp-integrations-heres-what-i-use-instead-2kj6</guid>
      <description>&lt;p&gt;Every few months a client asks me the same question: &lt;em&gt;"Can we just send this over WhatsApp?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Every few months I make the same mistake: &lt;em&gt;"Sure, the Cloud API isn't that bad."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;It &lt;strong&gt;is&lt;/strong&gt; that bad. Not the API itself — the everything around it. After the third project where I rebuilt the same plumbing, I switched to a platform called &lt;a href="https://enosend.com" rel="noopener noreferrer"&gt;EnoSend&lt;/a&gt; and got my weekends back. This is a quick post on what kept biting me, and what I do now.&lt;/p&gt;

&lt;h2&gt;
  
  
  The stuff nobody warns you about
&lt;/h2&gt;

&lt;p&gt;Building directly on the WhatsApp Cloud API, here's what eats your time:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Business verification and number provisioning.&lt;/strong&gt; Days of back-and-forth with Meta before you send a single message.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Template approvals.&lt;/strong&gt; Marketing and utility templates have to be pre-approved. They get rejected. You guess why.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The 24-hour window.&lt;/strong&gt; You can only freely message a user within 24 hours of their last message. Outside that, templates only. Your code has to know which side of the window it's on.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Bulk sending without getting flagged.&lt;/strong&gt; Send too fast, you get rate-limited. Send too slow, your campaign takes a day. Quality rating tanks if recipients block you.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multiple numbers, multiple clients.&lt;/strong&gt; The moment you have two businesses on one stack, you're building a multi-tenant routing layer you didn't budget for.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Reselling to your own users.&lt;/strong&gt; If you're charging end customers for messages, now you need wallets, top-ups, per-message pricing, and reconciliation.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Instance health.&lt;/strong&gt; Numbers disconnect. QR codes expire. You need a job that notices and reconnects before your client does.&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;Each one is a week of work. Together, they're a product.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  What I use now
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://enosend.com" rel="noopener noreferrer"&gt;EnoSend&lt;/a&gt; is a WhatsApp SaaS that handles all of the above so I can focus on the part that's actually mine — the business logic. The parts that mattered most to me:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Bulk campaigns&lt;/strong&gt; with scheduling, throttling, and delivery tracking. I don't write rate-limit logic anymore.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multi-instance management.&lt;/strong&gt; I can run several WhatsApp numbers for several clients from one dashboard, and the routing is solved.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Built-in wallet and billing.&lt;/strong&gt; If I'm reselling to end clients, the per-message accounting is already there. I'm not building a billing system on the side.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Auto-reconnect for stuck instances.&lt;/strong&gt; QR and connecting states get cleaned up in the background. I stopped getting &lt;em&gt;"the number is offline"&lt;/em&gt; messages on Sunday nights.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;A marketing and ticketing layer&lt;/strong&gt; on top, for when the client wants more than just sending.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;A rough sketch of what shipping a WhatsApp feature looks like now versus before:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Before:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Week 1-2: plumbing (auth, webhooks, templates, rate limits, retries)
Week 3:   more plumbing (multi-tenant routing, instance health)
Week 4:   start the actual product
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;After:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Day 1: start the actual product
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You can wire up a send in a few lines:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;enosend.send(to=number, template="order_confirmation", vars={...})&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;That's the part I wanted to write. Everything underneath it is somebody else's problem now.&lt;/p&gt;

&lt;h2&gt;
  
  
  When EnoSend is the right call
&lt;/h2&gt;

&lt;p&gt;Use it if you're:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Building a tool that sends WhatsApp messages on behalf of clients (agencies, SaaS, marketplaces)&lt;/li&gt;
&lt;li&gt;Running bulk campaigns and tired of fighting rate limits and quality ratings&lt;/li&gt;
&lt;li&gt;Managing multiple WhatsApp numbers across multiple businesses&lt;/li&gt;
&lt;li&gt;Reselling WhatsApp messaging and need billing + wallets out of the box&lt;/li&gt;
&lt;li&gt;Just tired of explaining template rejections to your team&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Probably overkill if you only need to send one transactional message a day from one number — the raw Cloud API will do.&lt;/p&gt;

&lt;h2&gt;
  
  
  The takeaway
&lt;/h2&gt;

&lt;p&gt;The Cloud API gives you a protocol. A product needs everything around the protocol — quality management, billing, multi-tenant routing, campaign throttling, instance health. That second list is the iceberg.&lt;/p&gt;

&lt;p&gt;If the part you actually want to build is the &lt;strong&gt;product&lt;/strong&gt;, not the messaging layer underneath it, hand the messaging layer to something else. I use &lt;a href="https://enosend.com" rel="noopener noreferrer"&gt;EnoSend&lt;/a&gt;. It made me faster and it made my clients happier, which is the only metric that matters.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Build the part that's yours.&lt;/p&gt;
&lt;/blockquote&gt;

</description>
    </item>
  </channel>
</rss>
