Module

NodeMailer

Package
purescript-nodemailer
Repository
oreshinya/purescript-nodemailer

#AuthConfig Source

type AuthConfig = { pass :: String, user :: String }

#TransportConfig Source

type TransportConfig = { auth :: AuthConfig, host :: String, port :: Int, secure :: Boolean }

#Message Source

type Message = { attachments :: Array Attachment, bcc :: Array String, cc :: Array String, from :: String, subject :: String, text :: String, to :: Array String }

#Transporter Source

#MessageInfo Source