csv-table-0.1.0.0: Scripts for manipulating tables stored as CSV files

Safe HaskellSafe
LanguageHaskell2010

Data.CSV.Table.Email

Contents

Synopsis

Email representation

data Email Source

Constructors

E 

Fields

uid :: String
 
to :: String
 
cc :: [String]
 
sender :: String
 
subject :: String
 
text :: String
 
send :: Bool
 

Instances

Send function

sendMail :: Table -> (RowInfo -> Email) -> IO () Source