-
-
Notifications
You must be signed in to change notification settings - Fork 528
Notify_46elks
Chris Caron edited this page Nov 4, 2025
·
1 revision
- Source: https://46elks.com/
- Icon Support: No
- Message Format: Plain Text
- Message Limit: 160 characters
46elks is a straightforward SMS provider. You authenticate with your 46elks API user and password, then send to, message, and optionally from. The plugin loops per target recipient and posts form-encoded payloads to the fixed API endpoint.
- Log in at https://46elks.com and obtain your API username and password.
- Optionally choose a From sender ID, either an E.164 number or an approved alphanumeric sender.
- Use the
46elks://URL form in Apprise to send messages.
Valid syntax is as follows:
46elks://{user}:{password}@/{from}46elks://{user}:{password}@/{from}/{to}46elks://{user}:{password}@/{from}/{to1}/{to2}/{toN}elks://{user}:{password}@/{from}elks://{user}:{password}@/{from}/{to}elks://{user}:{password}@/{from}/{to1}/{to2}/{toN}
| Variable | Required | Description |
|---|---|---|
| user | Yes | Your 46elks API username |
| password | Yes | Your 46elks API password |
| to | Yes | Recipient phone number(s), E.164 recommended |
| from | No | Sender ID or E.164 number, if configured in 46elks |
Send a simple message:
# Assuming our {user} is user123
# Assuming our {password} is pass
# Assuming our {Source} is +15551234567
# Because no target is specified, we will notify ourseles
apprise -vv -t "Test" -b "Hello from Apprise" \
46elks://user123:pass@/+15551234567Multiple recipients and a sender ID:
# Assuming our {user} is user
# Assuming our {password} is pass456
# Assuming our {Source} is Acme
# Assuming our target {PhoneNo} we wish to notify is
# +15551234567 and +15551231234
apprise -vv -b "Status: OK" \
"46elks://user:pass456@/+15551234567/+15551231234?from=Acme"