definition:
|
sendMail :: String -> String -> String -> String -> IO ()
sendMail from to subject = sendMailWithOptions from subject [TO to]
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
---------------------------------------------------------------------------
--- Sends an email via mailx command.
--- @param from - the email address of the sender
--- @param to - the email address of the recipient
--- @param subject - the subject of the email
--- @param contents - the contents of the email
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> {sendMailWithOptions}}
|
name:
|
sendMail
|
precedence:
|
no precedence defined
|
result-values:
|
{sendMailWithOptions}
|
signature:
|
String -> String -> String -> String -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|