Use cases

Send Booking Confirmations via SMS

Minimize no-shows by directly sending booking confirmations via SMS – simple, efficient, and always within reach for your customer.

Look, your booking is confirmed! 😊

The best way to receive a booking confirmation is via SMS. You get it instantly, you carry it with you wherever you go, and it’s easy to find.

Whether it's a restaurant reservation, hotel room, hairdresser appointment, or a workshop, an immediate SMS confirmation provides recipients with all the necessary information and confirms that their booking has been correctly registered.

Add a personal touch to your booking confirmations

A simple message like 'Hi, your booking is confirmed. We look forward to meeting you!' can make a big difference. It's effective, direct, and shows your customers that you value them. This way of communicating not only makes the booking process smoother but also builds a stronger relationship with your customers.

Sending an SMS is super easy

With the 46elks API, it only takes a few lines of code to send your first SMS. If it still feels difficult to get started, contact us and we'll guide you through it.

import requests

response = requests.post(
  'https://api.46elks.com/a1/sms',
  auth = (API_USERNAME, API_PASSWORD),
  data = {
    'from': 'The Cobbler',
    'to': '+46700000000',
    'message': "πŸ‘  Your shoes are ready! We are open until 6 PM today :)"
  }
)
print(response.text)

Read more in our documentation or contact our fantastic customer support if you have any questions.