This commit is contained in:
Andros Fenollosa
2020-06-11 17:38:47 +02:00
parent c8cb139aad
commit e8b410012a
5 changed files with 14 additions and 10 deletions

View File

@@ -6,7 +6,7 @@
(defroutes public
;; Urls public endpoints
(POST "/api/v1/email/" [] view-public/send))
(POST "/api/v1/email/" [] view-public/send-email))
(defroutes resources-routes

View File

@@ -3,17 +3,20 @@
(:require
[tadam.templates :refer [render-template render-JSON]]
[tadam.responses :refer [response]]
[tadam.email :refer [send]]))
[tadam.utils :refer [get-JSON]]
[tadam.email :refer [send]]
[api2smtp.config :refer [config]]))
(defn send
(defn send-email
;; View Send email
[req]
(let [params {:name (-> req :params :name)
:subject (-> req :params :subject)
:email (-> req :params :email)
:message (-> req :params :message)}]
(let [json (get-JSON req)
params {:name (-> json :name)
:subject (-> json :subject)
:email (-> json :email)
:message (-> json :message)}]
;; Send email
(send "to@email.com" "Contact" (render-template "emails/contact.html" params) (render-template "emails/contact.txt" params))
(send config "to@email.com" "Contact" (render-template "emails/contact.html" params) (render-template "emails/contact.txt" params))
;; Response OK
(render-JSON req {:status "ok"})))