Skip to content

Instantly share code, notes, and snippets.

@lukaszkorecki
Created February 7, 2020 15:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukaszkorecki/2c7cf2607373e1e4210f317c867f5dc0 to your computer and use it in GitHub Desktop.
Save lukaszkorecki/2c7cf2607373e1e4210f317c867f5dc0 to your computer and use it in GitHub Desktop.
(defn validate-email [{:keys [cc to bcc]}]
(and (or (nil? cc) (valid-email? cc))
(or (nil? bcc) (valid-email? bcc))
(valid-email? bcc))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment