Skip to content

Instantly share code, notes, and snippets.

@tmcneill-reifyhealth
Created June 12, 2019 13:16
Show Gist options
  • Save tmcneill-reifyhealth/eb44299c3c9ec69ca3c806d856d33c81 to your computer and use it in GitHub Desktop.
Save tmcneill-reifyhealth/eb44299c3c9ec69ca3c806d856d33c81 to your computer and use it in GitHub Desktop.
(def spreadsheet-regex
#"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")
(defn content-type-spreadsheet? [content-type]
(when content-type
(re-find spreadsheet-regex content-type)))
(defn has-spreadsheet? [msg]
(and (:multipart? msg)
(some content-type-spreadsheet?
(map :content-type (:body msg)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment