UNPKG
trailpack-mandrill
Version:
latest (2.0.0)
2.0.0
1.0.3
1.0.2
1.0.1
1.0.0
Trailpack for Mandrill
trailsjs.io
scott-wyatt/trailpack-mandrill
trailpack-mandrill
/
lib
/
schemas
/
mandrill.js
14 lines
(11 loc)
•
309 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict'
const
joi =
require
(
'joi'
)
module
.
exports
= joi.
object
().
keys
({
key
: joi.
string
(),
// Host name for sending eg. cal-style.com
host
: joi.
string
(),
// Protocol for sending eg. https or http
protocol
: joi.
string
(),
// The ReplyTo field in Mandrill templates
replyTo
: joi.
string
() })