<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://blog.mailer.smartek.co.mz/feed.xml" rel="self" type="application/atom+xml" /><link href="https://blog.mailer.smartek.co.mz/" rel="alternate" type="text/html" hreflang="en" /><updated>2026-07-05T08:27:53+00:00</updated><id>https://blog.mailer.smartek.co.mz/feed.xml</id><title type="html">S-Mailer Blog</title><subtitle>Guides, tips, and announcements for S-Mailer — the multichannel messaging platform for businesses.</subtitle><author><name>Smartek</name></author><entry><title type="html">How to turn your Android into a powerful gateway for S-Mailer</title><link href="https://blog.mailer.smartek.co.mz/guides/2026/07/05/turn-your-android-into-a-gateway.html" rel="alternate" type="text/html" title="How to turn your Android into a powerful gateway for S-Mailer" /><published>2026-07-05T07:00:00+00:00</published><updated>2026-07-05T07:00:00+00:00</updated><id>https://blog.mailer.smartek.co.mz/guides/2026/07/05/turn-your-android-into-a-gateway</id><content type="html" xml:base="https://blog.mailer.smartek.co.mz/guides/2026/07/05/turn-your-android-into-a-gateway.html"><![CDATA[<p>One of the most powerful features of S-Mailer is that you don’t need any special
hardware to start sending SMS. <strong>Any Android phone can become a sending gateway.</strong>
This guide walks you through it, step by step.</p>

<h2 id="what-youll-need">What you’ll need</h2>

<ul>
  <li>An Android phone (Android 8.0 / API 26 or newer) with an active SIM.</li>
  <li>An S-Mailer account with a token balance. <a href="https://mailer.smartek.co.mz">Sign up here</a>.</li>
  <li>The <strong>S-Mailer</strong> Android app — <a href="https://github.com/s-mailer/s-mailer-blog/releases/latest/download/s-mailer.apk"><strong>download the APK</strong></a>.</li>
</ul>

<hr />

<h2 id="step-1--install-the-app">Step 1 — Install the app</h2>

<p><strong><a href="https://github.com/s-mailer/s-mailer-blog/releases/latest/download/s-mailer.apk">⬇️ Download the S-Mailer app (APK)</a></strong></p>

<p>Install it on the phone you want to use as a gateway. Because it is installed
outside the Play Store, allow installs from your browser or file manager when
prompted. Open the app and grant the SMS and phone permissions it asks for — it
needs these to read your SIMs and send messages.</p>

<p><img src="/assets/img/guide-01-permissions.png" alt="Install and grant permissions" />
<em>Placeholder: the permissions screen on first launch.</em></p>

<h2 id="step-2--copy-the-pairing-payload">Step 2 — Copy the pairing payload</h2>

<p>On first launch the app generates a <strong>pairing payload</strong> — a small block of JSON
that identifies this device (its ID, a one-time pairing code, and its SIMs). Tap
<strong>Copy</strong> to put it on your clipboard.</p>

<p><img src="/assets/img/guide-02-pairing.png" alt="Copy the pairing payload" />
<em>Placeholder: the pairing screen with the Copy button.</em></p>

<h2 id="step-3--register-the-sender-in-the-dashboard">Step 3 — Register the sender in the dashboard</h2>

<ol>
  <li>Log in to the <a href="https://mailer.smartek.co.mz">S-Mailer dashboard</a>.</li>
  <li>Go to <strong>Senders → Register sender</strong>.</li>
  <li>Choose the <strong>Android SMS Gateway</strong> option.</li>
  <li>Paste the pairing payload you copied from the app.</li>
  <li>Save.</li>
</ol>

<p>S-Mailer then pairs your device to the new sender.</p>

<p><img src="/assets/img/guide-03-register.png" alt="Register the sender" />
<em>Placeholder: the sender registration form in the dashboard.</em></p>

<h2 id="step-4--confirm-it-is-paired">Step 4 — Confirm it is paired</h2>

<p>Back on the phone, the app switches to its dashboard and shows <strong>“Paired with
&lt;your company&gt;“</strong>. Keep the app running and the phone online — it now holds a
live connection to S-Mailer and waits for messages to send.</p>

<p><img src="/assets/img/guide-04-paired.png" alt="Paired and ready" />
<em>Placeholder: the app showing the paired status.</em></p>

<h2 id="step-5--send-your-first-message">Step 5 — Send your first message</h2>

<p>Create an API key (<strong>API Keys → New key</strong>, with the <strong>Send</strong> permission for the
SMS channel), then call the API:</p>

<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>curl <span class="nt">-X</span> POST https://api.mailer.smartek.co.mz/api/v1/send <span class="se">\</span>
  <span class="nt">-H</span> <span class="s2">"X-Client-ID: &lt;your-client-id&gt;"</span> <span class="se">\</span>
  <span class="nt">-H</span> <span class="s2">"X-Client-Secret: &lt;your-api-key&gt;"</span> <span class="se">\</span>
  <span class="nt">-H</span> <span class="s2">"Content-Type: application/json"</span> <span class="se">\</span>
  <span class="nt">-d</span> <span class="s1">'{
        "channel": "sms",
        "recipient": "+258840000000",
        "content": "Hello from my Android gateway!"
      }'</span>
</code></pre></div></div>

<p>Your phone receives the send request over its live connection and sends the SMS
through its SIM. The delivery status flows back to your dashboard.</p>

<hr />

<h2 id="tips-for-a-reliable-gateway">Tips for a reliable gateway</h2>

<ul>
  <li><strong>Keep the phone charged and online.</strong> A device on Wi-Fi or mobile data with a
stable connection delivers fastest.</li>
  <li><strong>Watch your SIM limits.</strong> Carriers may rate-limit or block high SMS volumes —
spread load across multiple devices for scale.</li>
  <li><strong><code class="language-plaintext highlighter-rouge">sent</code> is not <code class="language-plaintext highlighter-rouge">delivered</code>.</strong> On the Android gateway, <code class="language-plaintext highlighter-rouge">sent</code> means the message
was handed to the radio. For guaranteed delivery reports, use a carrier-grade
sending option.</li>
</ul>

<p>That’s it — you’ve turned an ordinary Android phone into a programmable SMS
gateway. Happy sending!</p>]]></content><author><name>S-Mailer Team</name></author><category term="guides" /><summary type="html"><![CDATA[One of the most powerful features of S-Mailer is that you don’t need any special hardware to start sending SMS. Any Android phone can become a sending gateway. This guide walks you through it, step by step.]]></summary></entry></feed>