<?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>Forem: Intally</title>
    <description>The latest articles on Forem by Intally (@intally).</description>
    <link>https://forem.com/intally</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%2F3912990%2F1d5d3b59-0249-4220-8106-de7dfa997e96.png</url>
      <title>Forem: Intally</title>
      <link>https://forem.com/intally</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/intally"/>
    <language>en</language>
    <item>
      <title>WHMCS Alert Email Spam? 4 Solutions Compared for 2026</title>
      <dc:creator>Intally</dc:creator>
      <pubDate>Fri, 08 May 2026 16:08:58 +0000</pubDate>
      <link>https://forem.com/intally/whmcs-alert-email-spam-4-solutions-compared-for-2026-56fg</link>
      <guid>https://forem.com/intally/whmcs-alert-email-spam-4-solutions-compared-for-2026-56fg</guid>
      <description>&lt;p&gt;&lt;em&gt;Originally published at &lt;a href="https://intally.hkdfc.net/en/news/whmcs-alert-email-spam-4-solutions-compared-for-2026" rel="noopener noreferrer"&gt;intally.hkdfc.net&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  WHMCS alert spam at 3 AM: 4 paths out, with the actual math (2026)
&lt;/h1&gt;

&lt;p&gt;3 AM, phone buzzes 50 times. Not a traffic spike. It's WHMCS, faithfully emailing every invoice paid notification because the default alerting has no dedup, no cooldown, no quiet hours. Every invoice state change is one email. If you run WHMCS, you've been there.&lt;/p&gt;

&lt;p&gt;Worse: built-in alerts only do email. No Slack, no Telegram, no Discord, no SMS. Maintenance window? Every customer alert still pings the on-call phone, no built-in silence. On-call rotation for a small team is basically not a thing. Either every admin gets every email, or one person eats it 24/7.&lt;/p&gt;

&lt;p&gt;Quick disclosure: I run Intally (a small WHMCS / WordPress plugin shop) and one of the four options below is something we built. So this isn't neutral, but I tried to write it honestly, which means flagging the cases where you should not pick option 4.&lt;/p&gt;

&lt;h2&gt;
  
  
  The four real paths
&lt;/h2&gt;

&lt;p&gt;There are basically four ways to fix this in 2026:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Patch WHMCS default emails and write your own hooks&lt;/li&gt;
&lt;li&gt;Pipe WHMCS into an external SaaS monitoring tool (PagerDuty, Opsgenie, Datadog)&lt;/li&gt;
&lt;li&gt;Buy a WHMCS Marketplace alert module from ModulesGarden or CodeCanyon&lt;/li&gt;
&lt;li&gt;Install a dedicated WHMCS alert plugin (Smart Alerting Hub style)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Below is what each one actually costs in money and time, for a solo or small hosting shop.&lt;/p&gt;

&lt;h2&gt;
  
  
  Option 1: roll your own with WHMCS hooks
&lt;/h2&gt;

&lt;p&gt;Best fit: teams with at least one backend dev who already knows WHMCS hooks.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Cost: 0 dollars, free as in beer&lt;/li&gt;
&lt;li&gt;Effort: high. You need to know WHMCS hooks (InvoicePaid, TicketOpen, OrderAdd, dozens of them), write PHP for dedup (Redis or a custom table), Slack webhook forwarding, Telegram bot calls&lt;/li&gt;
&lt;li&gt;Channels: as many as you write. Theoretically unlimited&lt;/li&gt;
&lt;li&gt;Maintenance: hook names shift between WHMCS 8.x and 9.x. Every new channel is a new adapter. Realistically 1 to 2 engineer weeks per year&lt;/li&gt;
&lt;li&gt;Catches:

&lt;ul&gt;
&lt;li&gt;Maintenance silencing ends up as one-off hacks scattered across hooks.php&lt;/li&gt;
&lt;li&gt;On-call rotation, you design the schedule logic yourself&lt;/li&gt;
&lt;li&gt;Alert history, replay, retry on failure, all built from zero&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;If you have a dev who's done WHMCS hooks before and your needs are weird enough that no plugin fits, fine. Otherwise year-one math looks free and year-three math doesn't.&lt;/p&gt;

&lt;h2&gt;
  
  
  Option 2: external SaaS monitoring
&lt;/h2&gt;

&lt;p&gt;Best fit: shops already running PagerDuty or Opsgenie for infra.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Pricing: PagerDuty starts at $19/user/month. Opsgenie $9 to $29/user/month. Datadog by event volume&lt;/li&gt;
&lt;li&gt;Effort: medium. WHMCS side, write hooks that fire webhooks into the SaaS. SaaS side, configure routing, channels, on-call schedules&lt;/li&gt;
&lt;li&gt;Channels: very wide. SaaS providers ship 30+ integrations out of the box. On-call, dedup, silence, all mature&lt;/li&gt;
&lt;li&gt;Catches:

&lt;ul&gt;
&lt;li&gt;Per-user pricing scales painfully. 10 admins on PagerDuty standard is $190/month, $2,280/year&lt;/li&gt;
&lt;li&gt;SaaS doesn't read WHMCS events natively. You middleware through webhooks, so "invoice paid" arrives as a generic incident, stripped of business context&lt;/li&gt;
&lt;li&gt;For most small shops, paging via PagerDuty for invoice notifications is like calling the SRE team because someone's coffee is cold&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;If you're already paying for PagerDuty for infra, adding WHMCS is cheap. If not, overkill.&lt;/p&gt;

&lt;h2&gt;
  
  
  Option 3: WHMCS Marketplace alert modules
&lt;/h2&gt;

&lt;p&gt;ModulesGarden, CodeCanyon. Search "WHMCS notification" or "WHMCS alert."&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Price: $179 to $499/year, ModulesGarden tier&lt;/li&gt;
&lt;li&gt;Effort: medium. Install, configure, plug in Slack or Telegram credentials&lt;/li&gt;
&lt;li&gt;Channels: depends on the plugin. Most cover email plus 2 to 3 channels&lt;/li&gt;
&lt;li&gt;Catches:

&lt;ul&gt;
&lt;li&gt;Most older plugins do "email plus Slack" and stop there. No dedup, no cooldown, no on-call rotation&lt;/li&gt;
&lt;li&gt;Maintenance is uneven. If the latest release is from 2024, skip it. WHMCS 8.6 and 9.0 already shifted hook semantics&lt;/li&gt;
&lt;li&gt;5-year cost runs $900 to $2,500, and you may still end up writing hooks to cover the gaps&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;Two things to check before you buy: does it actually do dedup or just forwarding, and was it updated in the last 90 days.&lt;/p&gt;

&lt;h2&gt;
  
  
  Option 4: a dedicated WHMCS alert plugin
&lt;/h2&gt;

&lt;p&gt;Smart Alerting Hub style plugins do the full loop: WHMCS events, multi-channel routing, dedup, on-call rotation, all in one module.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Price: free tier works, Pro is $69/year or $249 lifetime&lt;/li&gt;
&lt;li&gt;Effort: low. Install, configure channels (paste a Slack webhook, a Telegram bot token), pick which events to subscribe&lt;/li&gt;
&lt;li&gt;Channels: 8 standard (Email, Slack, Telegram, Discord, WhatsApp, SMS, PagerDuty, custom Webhook), no adapter writing&lt;/li&gt;
&lt;li&gt;WHMCS events: 26 (invoice, ticket, order, service, client, network, admin)&lt;/li&gt;
&lt;li&gt;Pro features:

&lt;ul&gt;
&lt;li&gt;Alert dedup with cooldown windows (same event N minutes, only one push)&lt;/li&gt;
&lt;li&gt;Maintenance silence windows (toggle on, alerts paused, no losses)&lt;/li&gt;
&lt;li&gt;Custom message templates ({{variable}} placeholders, override per channel or per event)&lt;/li&gt;
&lt;li&gt;On-call rotation (weekly cycles plus event filtering)&lt;/li&gt;
&lt;li&gt;Alert digest (hourly or daily batched summary)&lt;/li&gt;
&lt;li&gt;Unlimited alerts plus configurable history retention&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;Catches:

&lt;ul&gt;
&lt;li&gt;Free tier caps at 100 alerts/day, which a mid-size shop blows through in one busy day. Free also limits you to email plus one extra channel&lt;/li&gt;
&lt;li&gt;No cross-platform incident escalation in the PagerDuty sense (Slack to phone call to manager-on-call)&lt;/li&gt;
&lt;li&gt;Less customizable than raw hooks, though templates cover ~90% of real cases&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;Best fit: small to mid WHMCS hosting shops (under 50 admins) needing multi-channel alerts plus on-call plus dedup, without the per-seat SaaS bill.&lt;/p&gt;

&lt;h2&gt;
  
  
  Side by side
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Option&lt;/th&gt;
&lt;th&gt;Effort&lt;/th&gt;
&lt;th&gt;Monthly / yearly cost&lt;/th&gt;
&lt;th&gt;Channels&lt;/th&gt;
&lt;th&gt;Dedup / on-call / silence&lt;/th&gt;
&lt;th&gt;5-year cost&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Roll your own hooks&lt;/td&gt;
&lt;td&gt;High&lt;/td&gt;
&lt;td&gt;0&lt;/td&gt;
&lt;td&gt;As many as you write&lt;/td&gt;
&lt;td&gt;Build it yourself&lt;/td&gt;
&lt;td&gt;1-2 engineer weeks/yr&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;External SaaS&lt;/td&gt;
&lt;td&gt;Medium&lt;/td&gt;
&lt;td&gt;$19+/user/month&lt;/td&gt;
&lt;td&gt;30+&lt;/td&gt;
&lt;td&gt;Full&lt;/td&gt;
&lt;td&gt;10 users ~ $11k&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Marketplace module&lt;/td&gt;
&lt;td&gt;Medium&lt;/td&gt;
&lt;td&gt;$179-499/yr&lt;/td&gt;
&lt;td&gt;2-3&lt;/td&gt;
&lt;td&gt;Usually missing&lt;/td&gt;
&lt;td&gt;$900-2,500&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Dedicated plugin (Smart Alerting Hub style)&lt;/td&gt;
&lt;td&gt;Low&lt;/td&gt;
&lt;td&gt;Free or $69-249 once&lt;/td&gt;
&lt;td&gt;8&lt;/td&gt;
&lt;td&gt;Full (Pro)&lt;/td&gt;
&lt;td&gt;$69-249&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Pick by team size
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;1 to 3 people, under $5k/month: option 4 free tier. 100 alerts/day plus email plus one Slack channel covers it&lt;/li&gt;
&lt;li&gt;3 to 15 people, $5k to $30k/month: option 4 Pro. $69/year unlocks dedup, on-call, silence&lt;/li&gt;
&lt;li&gt;10 to 50 people already on PagerDuty or Opsgenie for infra: option 2. Unify incident management, eat the per-seat cost&lt;/li&gt;
&lt;li&gt;50+ people with dedicated backend: option 1 plus option 4 or 2 mixed. Big shops have enough custom logic that off-the-shelf doesn't quite fit&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  A shortcut if you go with option 4
&lt;/h2&gt;

&lt;p&gt;The &lt;a href="https://intally.hkdfc.net/plugins/smart-alerting-hub" rel="noopener noreferrer"&gt;Smart Alerting Hub plugin&lt;/a&gt; is the one we built, free tier installs in a few minutes. Out of the box:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Dashboard for channel health and alert stats&lt;/li&gt;
&lt;li&gt;Configure Slack, Telegram, Discord webhooks from the WHMCS admin UI, no code&lt;/li&gt;
&lt;li&gt;Alert history, replayable, retryable, filterable&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Pro ($69/year or $249 lifetime) unlocks the things you only need once the team grows: cooldown windows, on-call rotation, maintenance silence, custom templates. If you're under 3 people and under 100 alerts/day, free is enough.&lt;/p&gt;

&lt;p&gt;If you end up picking option 1, 2, or 3, that's fine. The reason I wrote this is so you don't pick the cheapest-looking thing and six months later realize you needed dedup and on-call all along, stacking three tools to do what one would've done. The most common WHMCS alert budget overrun I see is "just add Slack" turning into "actually we need dedup, on-call, silence" later. The rebuild costs 5 to 10x the up-front difference.&lt;/p&gt;




&lt;p&gt;WHMCS alerting in 2026 is still underrated. Most shops treat "alert equals email" as a law of physics. Written against actual May 2026 data.&lt;/p&gt;

&lt;p&gt;If your setup or pricing differs, I'd like to know. Drop a note at &lt;a href="https://t.me/intally_channel" rel="noopener noreferrer"&gt;@intally_channel&lt;/a&gt; and I'll update the article.&lt;/p&gt;

</description>
      <category>whmcs</category>
      <category>alerting</category>
      <category>devops</category>
      <category>oncall</category>
    </item>
    <item>
      <title>Accepting Alipay in WHMCS: 4 Options for 2026, with the Actual Math</title>
      <dc:creator>Intally</dc:creator>
      <pubDate>Fri, 08 May 2026 14:12:33 +0000</pubDate>
      <link>https://forem.com/intally/accepting-alipay-in-whmcs-4-options-for-2026-with-the-actual-math-16d3</link>
      <guid>https://forem.com/intally/accepting-alipay-in-whmcs-4-options-for-2026-with-the-actual-math-16d3</guid>
      <description>&lt;p&gt;&lt;em&gt;Originally published at &lt;a href="https://intally.hkdfc.net/en/news/accepting-alipay-in-whmcs-4-options-for-2026-with-the-actual-math" rel="noopener noreferrer"&gt;intally.hkdfc.net&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Accepting Alipay in WHMCS: 4 options for 2026, with the actual math
&lt;/h1&gt;

&lt;p&gt;WHMCS ships with PayPal, Stripe, and credit card gateways out of the box. If you want to take Alipay (mainland China), or HKD/USD paid via an Alipay+ wallet from a customer in HK / Taiwan / Singapore / Malaysia, WHMCS gives you nothing.&lt;/p&gt;

&lt;p&gt;If you sell hosting and any meaningful slice of your buyers is Chinese-speaking, missing this rail probably costs you 30 to 50 percent of would-be conversions. tbh I underestimated this for years.&lt;/p&gt;

&lt;p&gt;Quick disclosure before the math: I run Intally (a small WHMCS / WordPress plugin shop) and one of our plugins is in option 4 below. So this isn't neutral. I tried to write it the way I'd want someone else to write it for me when I was comparing, which means showing the cases where you should not pick option 4.&lt;/p&gt;

&lt;h2&gt;
  
  
  The four real paths
&lt;/h2&gt;

&lt;p&gt;There are basically four ways to do this in 2026:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Build it yourself against the Alipay Open Platform SDK&lt;/li&gt;
&lt;li&gt;Use a third-party payment aggregator (LianLian, cross-border acquirers, Stripe-Alipay, etc.)&lt;/li&gt;
&lt;li&gt;Buy a ready-made WHMCS module from ModulesGarden or CodeCanyon&lt;/li&gt;
&lt;li&gt;Integrate Antom directly (Ant International's official API, the thing Alipay+ runs on)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Below is what each one actually costs in money and time, if you're a solo or small hosting shop.&lt;/p&gt;

&lt;h2&gt;
  
  
  Option 1: roll your own against Alipay Open Platform
&lt;/h2&gt;

&lt;p&gt;Best fit: teams with a dedicated backend dev and high volume.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Fee rate: 0 percent platform cut. Bank settlement charges 0.1 to 0.2 percent on top&lt;/li&gt;
&lt;li&gt;Monthly fee: free&lt;/li&gt;
&lt;li&gt;Integration effort: high. RSA2 signing, callback verification, WHMCS gateway hooks (gatewayCallback, refundCallback), plus a reconciliation script&lt;/li&gt;
&lt;li&gt;Settlement: T+1 to your merchant bank&lt;/li&gt;
&lt;li&gt;Maintenance: Alipay's API changes every 1 to 2 years. Signing, async callbacks, refund reconciliation, each has sharp edges. Realistically 2 to 3 weeks of engineer time per year, ongoing&lt;/li&gt;
&lt;li&gt;Docs: all in Chinese, and not great. Noticeably rougher than what you'd expect from a Stripe-tier SaaS&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you're under $20k/month in volume and don't already have a backend dev who reads Chinese docs comfortably, this is not where I'd start.&lt;/p&gt;

&lt;h2&gt;
  
  
  Option 2: third-party aggregators
&lt;/h2&gt;

&lt;p&gt;Best fit: low volume, no dev appetite.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Fee rate: 2 to 4 percent. LianLian around 2.5 percent, Stripe-Alipay around 3.5 percent, others vary&lt;/li&gt;
&lt;li&gt;Monthly fee: usually free, some charge $30 to $50/mo&lt;/li&gt;
&lt;li&gt;Integration effort: low. There are existing WHMCS modules, you fill in 3 to 5 fields&lt;/li&gt;
&lt;li&gt;Settlement: T+1 to T+3&lt;/li&gt;
&lt;li&gt;Catches:

&lt;ul&gt;
&lt;li&gt;Stripe-Alipay is restricted in mainland China. Some IP ranges get blocked outright&lt;/li&gt;
&lt;li&gt;Many aggregators don't actually support ALIPAY_CN. They support the Alipay+ wallets used in HK / TW / SEA, which is a different rail&lt;/li&gt;
&lt;li&gt;KYC requirements are not lighter than going direct. You still need the same paperwork&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;Quick math. If you do $5,000/mo and pay 2.5 percent, that's $125/mo, $1,500/yr, $7,500 over 5 years. For a lot of shops that's more than the one-time KYC pain of going direct.&lt;/p&gt;

&lt;h2&gt;
  
  
  Option 3: WHMCS Marketplace modules
&lt;/h2&gt;

&lt;p&gt;ModulesGarden, CodeCanyon, etc. Search "WHMCS Alipay" and you'll find them.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Fee rate: the plugin itself is 0 percent. The underlying rail might not be&lt;/li&gt;
&lt;li&gt;Price: $179 to $499/yr typical, ModulesGarden pricing&lt;/li&gt;
&lt;li&gt;Integration effort: medium. Install, configure, test against your merchant account&lt;/li&gt;
&lt;li&gt;Catches:

&lt;ul&gt;
&lt;li&gt;A lot of these plugins are wrappers around an aggregator. So you're paying both the aggregator's 2 to 4 percent cut and the plugin's annual license fee. Double dipping yourself&lt;/li&gt;
&lt;li&gt;Maintenance varies wildly. If the latest release is from 2024, skip it. Alipay's API has shifted at least once since then&lt;/li&gt;
&lt;li&gt;Most of them ship encrypted source. When something breaks you're filing a vendor ticket and waiting&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;Two things to check before you buy: does it call the official API directly, and has it been updated in the last 90 days.&lt;/p&gt;

&lt;h2&gt;
  
  
  Option 4: integrate Antom directly
&lt;/h2&gt;

&lt;p&gt;Antom is Ant International's unified payment API for overseas merchants. The consumer-facing brand is Alipay+. It covers ALIPAY_CN (mainland) plus the HK / TW / Japan / Korea / SEA wallets in one integration.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Fee rate: 0 percent platform cut. Your real rate lives in the Antom merchant contract, typically 1.5 to 3 percent. Lower than the aggregators&lt;/li&gt;
&lt;li&gt;Monthly fee: free&lt;/li&gt;
&lt;li&gt;Integration effort: medium. RSA256 signing, callback handling, plus KYC (about 1 week)&lt;/li&gt;
&lt;li&gt;Settlement: T+1 to your merchant bank&lt;/li&gt;
&lt;li&gt;Catches:

&lt;ul&gt;
&lt;li&gt;KYC needs a HK / Singapore / Malaysia (or similar) entity. A pure mainland entity goes through domestic Alipay, which is a different rulebook&lt;/li&gt;
&lt;li&gt;Docs are in English and genuinely good. Better than the Open Platform docs imo&lt;/li&gt;
&lt;li&gt;Get the timestamp or signature wrong by one byte and the whole flow fails. Sandbox debugging usually takes 2 to 5 days the first time&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;h2&gt;
  
  
  Side by side
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Option&lt;/th&gt;
&lt;th&gt;Cut&lt;/th&gt;
&lt;th&gt;Fixed cost&lt;/th&gt;
&lt;th&gt;Effort&lt;/th&gt;
&lt;th&gt;Settlement&lt;/th&gt;
&lt;th&gt;Long-term cost&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Build your own&lt;/td&gt;
&lt;td&gt;0%&lt;/td&gt;
&lt;td&gt;0&lt;/td&gt;
&lt;td&gt;High&lt;/td&gt;
&lt;td&gt;T+1&lt;/td&gt;
&lt;td&gt;2 to 3 weeks/yr maintenance&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Aggregator&lt;/td&gt;
&lt;td&gt;2-4%&lt;/td&gt;
&lt;td&gt;0 to $50/mo&lt;/td&gt;
&lt;td&gt;Low&lt;/td&gt;
&lt;td&gt;T+1 to T+3&lt;/td&gt;
&lt;td&gt;Compounding cut forever&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Marketplace plugin&lt;/td&gt;
&lt;td&gt;0-2% (depends on rail)&lt;/td&gt;
&lt;td&gt;$179-499/yr&lt;/td&gt;
&lt;td&gt;Medium&lt;/td&gt;
&lt;td&gt;T+1&lt;/td&gt;
&lt;td&gt;Annual license + possible double cut&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Antom direct&lt;/td&gt;
&lt;td&gt;1.5-3%&lt;/td&gt;
&lt;td&gt;0&lt;/td&gt;
&lt;td&gt;Medium&lt;/td&gt;
&lt;td&gt;T+1&lt;/td&gt;
&lt;td&gt;One-time KYC&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Pick by monthly volume
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Under $500/mo: aggregator. The total cut is small in absolute dollars and you save the engineering hours&lt;/li&gt;
&lt;li&gt;$500 to $5,000/mo: Antom direct. 1.5 to 3 percent beats aggregator 2.5 to 4 percent over time, and your rate gets negotiable as volume grows&lt;/li&gt;
&lt;li&gt;$5,000 to $30,000/mo: Antom direct. The savings here pay for half an engineer&lt;/li&gt;
&lt;li&gt;$30,000+/mo: build it yourself or stay on Antom direct. Depends on team bandwidth&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  A shortcut if you go with option 4
&lt;/h2&gt;

&lt;p&gt;The bottleneck for option 4 is the integration. If you don't want to write the RSA256 signing, the callback dispatcher, and the WHMCS gateway glue from scratch, there are pre-built plugins that do it for you.&lt;/p&gt;

&lt;p&gt;Mine is one of them. &lt;a href="https://intally.hkdfc.net/plugins/antom-gateway" rel="noopener noreferrer"&gt;antom-gateway&lt;/a&gt;, free tier:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;ALIPAY_CN QR code in the invoice page, no off-site redirect&lt;/li&gt;
&lt;li&gt;RSA256 signing plus platform public key verification&lt;/li&gt;
&lt;li&gt;Multi-region API (Asia / North America / Europe) switchable via dropdown&lt;/li&gt;
&lt;li&gt;11 currencies with correct decimal handling&lt;/li&gt;
&lt;li&gt;One-click refunds&lt;/li&gt;
&lt;li&gt;Sandbox / production toggle&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Once you have your Antom credentials, integration goes from "3 weeks of dev time" to "fill 7 fields and save."&lt;/p&gt;

&lt;p&gt;If you end up picking option 1, 2, or 3 instead, that's fine. The reason I wrote this is so you don't pick X and six months later realize Y was the better fit.&lt;/p&gt;




&lt;p&gt;WHMCS-plus-Alipay is still a niche topic. Most English teutorials are 2020-era. This is written with May 2026 data.&lt;/p&gt;

&lt;p&gt;If your setup differs, ping &lt;a href="https://t.me/intally_channel" rel="noopener noreferrer"&gt;@intally_channel&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>whmcs</category>
      <category>payments</category>
      <category>alipay</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
