An open API service indexing awesome lists of open source software.

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

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
```