A simple, efficient Android application for sending batch SMS messages to customers. Perfect for small businesses that need to send payment, appointment, or service reminders and want or need to do so from the store phone.
- Bulk SMS Sending: Enter multiple phone numbers and send the same message to each
- Individual Sends: Ensure privacy by sending one-message-per number
- Pre-configured Template: Uses a customizable reminder message
- Simple Interface: Easy-to-use single screen with text input and send button
- Progress Tracking: Shows sending progress for multiple messages
- Open the app
- Paste in the message template
- Type in the phone numbers to send the message to
- Tap "Send" to begin sending messages
- The app will send each message with a short delay to prevent carrier blocking
This is a courtesy reminder about your upcoming appointment/payment. If you have any questions, please contact us.
This app was built as a custom solution for a small business need. The core functionality is intentionally simple:
fun sendMessages(numbers: List<String>) {
val message = "This is a courtesy reminder about your upcoming appointment/payment. If you have any questions, please contact us."
numbers.forEach { number ->
sendSMS(number, message)
}
}This app requires the following permissions:
- SEND_SMS - To send text messages
For support, please contact the developer directly.
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/newfeature) - Commit your changes (
git commit -m 'feat: Add some newfeature') - Push to the branch (
git push origin feature/newfeature) - Open a Pull Request
- Save message template between runs
- Read receipts
- Auto-fill phone numbers
- Multiple message templates
- Scheduled sending
- Message history tracking
- Contact integration
- Multi-channel sending
- OCR phone number auto-filling
- Statistics tracking