17 lines
455 B
Plaintext
Raw Normal View History

(ns status-im.utils.email
(:require [re-frame.core :as re-frame]
[status-im.utils.fx :as fx]
[status-im.react-native.js-dependencies :as dependencies]))
(re-frame/reg-fx
:email/send
;; https://github.com/chirag04/react-native-mail#example
(fn [[opts callback]]
2019-05-22 08:50:49 +03:00
(.mail (dependencies/react-native-mail)
(clj->js opts)
callback)))
(fx/defn send-email
[_ opts callback]
{:email/send [opts callback]})