-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Very simple SMTP Client -- -- Original post to lang.haskell.libraries: If you find this limited -- module useful then you can insert in your project. It is very limited -- but it could be useful to send email message using insecure -- plain/login authentication. I have no time to extend it. @package simplesmtpclient @version 0.2 module Network.SMTP.Client.Simple sendStringAsEMail :: String -> String -> SMTPAuthMethod -> String -> String -> String -> String -> String -> String -> PortNumber -> String -> String -> [String] -> IO (Bool) -- | if True then display debug info -- -- SMTP authorization method data SMTPAuthMethod PlainSMTPAuth :: SMTPAuthMethod LoginSMTPAuth :: SMTPAuthMethod