2021-10-12 17:53:10 +02:00
|
|
|
{ ... }:
|
|
|
|
let
|
|
|
|
in
|
|
|
|
{
|
2021-10-12 17:53:23 +02:00
|
|
|
# Make an email address from the name and domain stems
|
|
|
|
#
|
|
|
|
# mkMailAddress :: String -> String -> String
|
|
|
|
mkMailAddress = name: domain: "${name}@${domain}";
|
2021-10-12 17:53:10 +02:00
|
|
|
}
|