{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Receipt Delivery Settings - Gvelo Enterprise Platform{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Gvelo Enterprise Platform

Receipt Delivery Settings

Admins enter the API details used by cashiers to send receipts through WhatsApp, SMS, and email. Leave secret fields blank to keep the saved value.

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
Email {{ 'Ready' if status.email else 'Missing API Details' }} SMS {{ 'Ready' if status.sms else 'Missing API Details' }} WhatsApp {{ 'Ready' if status.whatsapp else 'Missing API Details' }}

Email SMTP

SMS API

Uses Africa's Talking SMS API.

WhatsApp Cloud API

Uses Meta WhatsApp Cloud API text messages. Use the phone number ID from Meta Developer settings.

{{ ui.button('Admin Dashboard', '/admin') }} {{ ui.button('Receipts', '/receipts') }} {% if session.get('server_owner') %} {{ ui.button('Verification Controls', '/server/verification-controls') }} {% endif %}
{% endblock %}