api2smtp/README.md

71 lines
1.6 KiB
Markdown
Raw Permalink Normal View History

2020-06-15 20:21:33 +02:00
<p align="center">
<img src="media/explication.jpg" alt="Explication" width="90%">
</p>
## Run
1) Make sure you have Java installed.
Debian/Ubuntu
``` sh
sudo apt install default-jre
```
Mac OS
``` sh
brew install java
```
2) Create a file `config.yaml` with the following content. You can also use `config.yaml.example` as a base config and change it to fit your needs.
``` yaml
# It can be a domain in case of using a proxy: example.com
domain: localhost
# It indicates which domain can use it. Debug true so there are no limitations.
domain-cli: localhost
# If it is active it will be accessible to any client
debug: true
port: 7404
#SMTP config
smtp-from: "no-reply@domain.com"
smtp-to: "my@domain.com"
smtp-subject: "Contact"
smtp-host: "smtp.domain.com"
smtp-user: ""
smtp-password: ""
smtp-port: 587
smtp-tls: true
```
3) Download the latest version of Glosa (`api2smtp-{version}-standalone.jar`).
https://github.com/tanrax/api2smtp/releases
4) Now you can execute api2smtp.
```sh
java -jar target/api2smtp-{version}-standalone.jar
```
Great 🎉. You already have your 🔥 own API send mails 🔥.
That's it, now you just have to test that it works properly.
``` sh
2021-03-02 10:12:39 +01:00
curl -XPOST -H "Content-type: application/json" -d '{
2020-06-15 20:21:33 +02:00
"name": "Cid",
"subject": "Awesome",
"email": "cid@campeador.es",
"message": "Attack!!"
}' 'localhost:7404/api/v1/email/'
```
2020-05-19 00:25:12 +02:00
2020-06-13 12:04:55 +02:00
---
2020-05-19 00:25:12 +02:00
2020-06-13 12:04:55 +02:00
<p align="center">
Thanks to the power of <a href="https://www.tadam-framework.dev/"><img src="https://avatars3.githubusercontent.com/u/54397807?s=50&v=4" alt="logo" width="50"> Tadam Framework</a>
</p>