Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 1.44 KB

File metadata and controls

35 lines (25 loc) · 1.44 KB

Versions

0.2.2

  • Fix quoted-printable encoding DockYard#83
  • Optimized quoted-printable encoder to reduce memory usage DockYard#87
  • Update RFC2822 email regex with a better one DockYard#86

0.2.0

  • Breaking - All message props are now binaries DockYard#69
  • removed Mail.Message.has_attachment? and Mail.Message.has_text_part? DockYard#74
  • added Mail.has_attachments? and Mail.has_text_parts? DockYard#74
  • added Mail.get_attachments DockYard#75
  • Allow RFC2822 email regex to be overriden by config DockYard#73
  • Allow Mail.put_attachment to use in-memory data in tuple DockYard#58
  • Support obsolete timestamps DockYard#70
  • Fix test suite for Elixir 1.4+ DockYard#67

0.1.1

  • Moved API to using strings instead of atoms
  • Parser and Renderer should handle reply-to header

0.1.0

  • API is stable enough for a minor version release
  • Resolved Elixir 1.3 warnings

0.0.3

  • Began multipart support. The Mail struct can have multiple "parts". Each Mail.Part can have multiple "parts".
  • Added RFC2822 Renderer
  • Added RFC2822 Parser