https://github.com/trou/httpsms2email
HTTP server to forward SMS to emails using the "SMS to URL Forwarder" Android app
https://github.com/trou/httpsms2email
Last synced: about 2 months ago
JSON representation
HTTP server to forward SMS to emails using the "SMS to URL Forwarder" Android app
- Host: GitHub
- URL: https://github.com/trou/httpsms2email
- Owner: trou
- License: gpl-3.0
- Created: 2025-01-17T14:57:25.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-26T11:44:09.000Z (about 1 year ago)
- Last Synced: 2025-12-26T02:29:28.793Z (6 months ago)
- Language: Rust
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Designed to work with
## sample `config.toml`
```toml
server_port = 443
smtp_server = "smtp.example.com"
smtp_port = 25
destination_emails = ["mail1@example.com", "mail2@example.com"]
sender_email = "youremail@example.com"
cert = "cert.pem"
keyfile = "key.pem"
```
## test curl
```
curl --json '{"from": "test", "sent_stamp": 12345678, "received_stamp": 576890, "text": "éééé $$$"}' -v -k https://localhost:7777/send_sms
```