aboutsummaryrefslogtreecommitdiff
path: root/src/Model/Mail.hs
blob: 7c75bbb5936dcf85172114949142dc630ed3d585 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Model.Mail
  ( Mail(..)
  ) where

import Data.Text (Text)

data Mail = Mail
  { from :: Text
  , to :: [Text]
  , subject :: Text
  , plainBody :: Text
  , htmlBody :: Text
  } deriving (Eq, Show)