From 74aff92204f70a6f113039fe90d332b44f9493c2 Mon Sep 17 00:00:00 2001 From: Joris Date: Sun, 20 Nov 2016 18:26:07 +0100 Subject: Enable multi-urls in config file --- src/Model/Mail.hs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/Model/Mail.hs') diff --git a/src/Model/Mail.hs b/src/Model/Mail.hs index 20addee..7c75bbb 100644 --- a/src/Model/Mail.hs +++ b/src/Model/Mail.hs @@ -3,12 +3,11 @@ module Model.Mail ) where import Data.Text (Text) -import qualified Data.Text.Lazy as LT data Mail = Mail { from :: Text , to :: [Text] , subject :: Text - , plainBody :: LT.Text - , htmlBody :: LT.Text + , plainBody :: Text + , htmlBody :: Text } deriving (Eq, Show) -- cgit v1.2.3