Source file sihl_email.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
open Lwt.Syntax
module Core = Sihl_core
module Utils = Sihl_core.Utils
module Template = Sihl_email_template
let log_src = Logs.Src.create "sihl.service.email"
module Logs = (val Logs.src_log log_src : Logs.LOG)
let print email =
let sender = Sihl_type.Email.sender email in
let recipient = Sihl_type.Email.recipient email in
let subject = Sihl_type.Email.subject email in
let text_content = Sihl_type.Email.text_content email in
let html_content = Sihl_type.Email.html_content email in
Logs.info (fun m ->
m
{|
-----------------------
Email sent by: %s
Recpient: %s
Subject: %s
-----------------------
Text:
%s
-----------------------
Html:
%s
-----------------------
|}
sender
recipient
subject
text_content
html_content)
;;
let should_intercept () =
let is_production = Sihl_core.Configuration.is_production () in
let bypass =
Option.value
~default:false
(Sihl_core.Configuration.read_bool "EMAIL_BYPASS_INTERCEPT")
in
match is_production, bypass with
| false, true -> false
| false, false -> true
| true, _ -> false
;;
let intercept sender email =
let is_development = Sihl_core.Configuration.is_development () in
let console =
Option.value
~default:is_development
(Sihl_core.Configuration.read_bool "EMAIL_CONSOLE")
in
let () = if console then print email else () in
if should_intercept ()
then Lwt.return (Sihl_type.Email.add_to_inbox email)
else sender email
;;
module MakeSmtp (TemplateService : Sihl_contract.Email_template.Sig) :
Sihl_contract.Email.Sig = struct
type config =
{ sender : string
; username : string
; password : string
; hostname : string
; port : int option
; start_tls : bool
; ca_path : string option
; ca_cert : string option
; console : bool option
}
let config sender username password hostname port start_tls ca_path ca_cert console =
{ sender; username; password; hostname; port; start_tls; ca_path; ca_cert; console }
;;
let schema =
let open Conformist in
make
[ string "SMTP_SENDER"
; string "SMTP_USERNAME"
; string "SMTP_PASSWORD"
; string "SMTP_HOST"
; optional (int ~default:587 "SMTP_PORT")
; bool "SMTP_START_TLS"
; optional (string ~default:"/etc/ssl/certs" "SMTP_CA_PATH")
; optional (string ~default:"" "SMTP_CA_CERT")
; optional (bool ~default:false "EMAIL_CONSOLE")
]
config
;;
let send' (email : Sihl_type.Email.t) =
let recipients =
List.concat
[ [ Letters.To email.recipient ]
; List.map (fun address -> Letters.Cc address) email.cc
; List.map (fun address -> Letters.Bcc address) email.bcc
]
in
let body =
match email.html with
| true -> Letters.Html email.html_content
| false -> Letters.Plain email.text_content
in
let sender = (Core.Configuration.read schema).sender in
let username = (Core.Configuration.read schema).username in
let password = (Core.Configuration.read schema).password in
let hostname = (Core.Configuration.read schema).hostname in
let port = (Core.Configuration.read schema).port in
let with_starttls = (Core.Configuration.read schema).start_tls in
let ca_path = (Core.Configuration.read schema).ca_path in
let ca_cert = (Core.Configuration.read schema).ca_cert in
let config =
Letters.Config.make ~username ~password ~hostname ~with_starttls
|> Letters.Config.set_port port
|> fun conf ->
match ca_cert, ca_path with
| Some path, _ -> Letters.Config.set_ca_cert path conf
| None, Some path -> Letters.Config.set_ca_path path conf
| None, None -> conf
in
Letters.build_email ~from:email.sender ~recipients ~subject:email.subject ~body
|> function
| Ok message -> Letters.send ~config ~sender ~recipients ~message
| Error msg -> raise (Sihl_type.Email.Exception msg)
;;
let send email =
let* email = TemplateService.render email in
intercept send' email
;;
let bulk_send _ = failwith "Bulk sending not implemented yet"
let start () =
if should_intercept () then () else Core.Configuration.require schema;
Lwt.return ()
;;
let stop () = Lwt.return ()
let lifecycle =
Core.Container.Lifecycle.create
"email"
~dependencies:[ TemplateService.lifecycle ]
~start
~stop
;;
let register () =
let configuration = Core.Configuration.make ~schema () in
Core.Container.Service.create ~configuration lifecycle
;;
end
module MakeSendGrid (TemplateService : Sihl_contract.Email_template.Sig) :
Sihl_contract.Email.Sig = struct
let body ~recipient ~subject ~sender ~content =
Printf.sprintf
{|
{
"personalizations": [
{
"to": [
{
"email": "%s"
}
],
"subject": "%s"
}
],
"from": {
"email": "%s"
},
"content": [
{
"type": "text/plain",
"value": "%s"
}
]
}
|}
recipient
subject
sender
content
;;
let sendgrid_send_url = "https://api.sendgrid.com/v3/mail/send" |> Uri.of_string
type config =
{ api_key : string
; console : bool option
}
let config api_key console = { api_key; console }
let schema =
let open Conformist in
make [ string "SENDGRID_API_KEY"; optional (bool "EMAIL_CONSOLE") ] config
;;
let send' email =
let token = (Sihl_core.Configuration.read schema).api_key in
let =
Cohttp.Header.of_list
[ "authorization", "Bearer " ^ token; "content-type", "application/json" ]
in
let sender = Sihl_type.Email.sender email in
let recipient = Sihl_type.Email.recipient email in
let subject = Sihl_type.Email.subject email in
let text_content = Sihl_type.Email.text_content email in
let req_body = body ~recipient ~subject ~sender ~content:text_content in
let* resp, resp_body =
Cohttp_lwt_unix.Client.post
~body:(Cohttp_lwt.Body.of_string req_body)
~headers
sendgrid_send_url
in
let status = Cohttp.Response.status resp |> Cohttp.Code.code_of_status in
match status with
| 200 | 202 ->
Logs.info (fun m -> m "EMAIL: Successfully sent email using sendgrid");
Lwt.return ()
| _ ->
let* body = Cohttp_lwt.Body.to_string resp_body in
Logs.err (fun m ->
m
"EMAIL: Sending email using sendgrid failed with http status %i and body %s"
status
body);
raise (Sihl_type.Email.Exception "EMAIL: Failed to send email")
;;
let send email =
let* email = TemplateService.render email in
intercept send' email
;;
let bulk_send _ = Lwt.return ()
let start () = Lwt.return ()
let stop () = Lwt.return ()
let lifecycle =
Core.Container.Lifecycle.create
"email"
~dependencies:[ TemplateService.lifecycle ]
~start
~stop
;;
let register () =
let configuration = Core.Configuration.make ~schema () in
Core.Container.Service.create ~configuration lifecycle
;;
end
module MakeQueued
(EmailService : Sihl_contract.Email.Sig)
(QueueService : Sihl_contract.Queue.Sig) : Sihl_contract.Email.Sig = struct
module Job = struct
let input_to_string email =
email |> Sihl_type.Email.to_yojson |> Yojson.Safe.to_string |> Option.some
;;
let string_to_input email =
match email with
| None ->
Logs.err (fun m ->
m
"DELAYED_EMAIL: Serialized email string was NULL, can not deserialize \
email. Please fix the string manually and reset the job instance.");
Error "Invalid serialized email string received"
| Some email -> Result.bind (email |> Utils.Json.parse) Sihl_type.Email.of_yojson
;;
let handle ~input = EmailService.send input |> Lwt.map Result.ok
(** Nothing to clean up, sending emails is a side effect *)
let failed _ = Lwt_result.return ()
let job =
Sihl_type.Queue_job.create
~name:"send_email"
~input_to_string
~string_to_input
~handle
~failed
()
|> Sihl_type.Queue_job.set_max_tries 10
|> Sihl_type.Queue_job.set_retry_delay Core.Time.OneHour
;;
end
let send email =
if not (Sihl_core.Configuration.is_production ())
then (
Logs.debug (fun m -> m "Skipping queue for email sending");
EmailService.send email)
else QueueService.dispatch ~job:Job.job email
;;
let bulk_send emails =
let rec loop emails =
match emails with
| email :: emails -> Lwt.bind (send email) (fun () -> loop emails)
| [] -> Lwt.return ()
in
loop emails
;;
let start () = QueueService.register_jobs ~jobs:[ Job.job ] |> Lwt.map ignore
let stop () = Lwt.return ()
let lifecycle =
Core.Container.Lifecycle.create
"delayed-email"
~start
~stop
~dependencies:
[ EmailService.lifecycle
; Sihl_persistence.Database.lifecycle
; QueueService.lifecycle
]
;;
let register () = Core.Container.Service.create lifecycle
end
module Template_repo = Sihl_email_template_repo