Logo Lanfrica

yuzzothecreator/SMS-Inter

Domaine:

digital infrastructure

Type de record:

software
Créateur:
yuz
Hôte:
Next.js app for Tanzania mobile login via SMS OTP. Choose Notify Africa or NextSMS, send a one-time code to a phone number, then verify it to authenticate. # SMS Inter Simple Next.js website for sending real mobile SMS with Twilio. ## Setup 1. Copy env file and fill in Twilio values: ```bash cp .env.example .env.local ``` 2. In Twilio Console grab: - Account SID - Auth Token - A Twilio phone number (or verified caller ID on trial) 3. Install and run: ```bash npm install npm run dev ``` Open localhost. ## Trial accounts Twilio trial accounts can only send to **verified** phone numbers. Verify your mobile under Phone Numbers → Verified Caller IDs. ## API `POST /api/send-sms` ```json { "to": "+255712345678", "message": "Hello from SMS Inter" } ```